|
| 1 | +# cyberdream theme for helix |
| 2 | +"ui.background" = "bg" |
| 3 | +"ui.text" = "fg" |
| 4 | +"ui.cursor" = { bg = "fg", fg = "bg" } |
| 5 | +"ui.linenr" = "grey" |
| 6 | +"ui.statusline" = { fg = "cyan" } |
| 7 | +"ui.selection" = "green" |
| 8 | +"ui.selection.primary" = "magenta" |
| 9 | + |
| 10 | +# Syntax Highlighting for Code |
| 11 | +"comment" = { fg = "grey", modifiers = ["italic"] } |
| 12 | +"comment.line" = { fg = "grey", modifiers = ["italic"] } |
| 13 | +"comment.block" = { fg = "grey", modifiers = ["italic"] } |
| 14 | +"comment.documentation" = { fg = "blue", modifiers = ["italic"] } |
| 15 | +"keyword" = "orange" |
| 16 | +"keyword.control" = "orange" |
| 17 | +"keyword.operator" = "pink" |
| 18 | +"keyword.function" = "orange" |
| 19 | +"type" = "cyan" |
| 20 | +"type.builtin" = "cyan" |
| 21 | +"function" = "blue" |
| 22 | +"function.builtin" = "pink" |
| 23 | +"function.method" = "blue" |
| 24 | +"variable" = "fg" |
| 25 | +"variable.builtin" = "magenta" |
| 26 | +"variable.parameter" = "cyan" |
| 27 | +"string" = "green" |
| 28 | +"string.special" = "pink" |
| 29 | +"constant" = "fg" |
| 30 | +"constant.builtin" = "red" |
| 31 | +"constant.numeric" = "yellow" |
| 32 | +"constant.character" = "pink" |
| 33 | +"constant.boolean" = "red" |
| 34 | +"attribute" = "magenta" |
| 35 | +"operator" = "purple" |
| 36 | +"tag" = { fg = "purple", modifiers = ["bold"] } |
| 37 | +"tag.special" = { fg = "orange", modifiers = ["bold"] } |
| 38 | +"namespace" = "purple" |
| 39 | +"macro" = "orange" |
| 40 | +"label" = "red" |
| 41 | + |
| 42 | +# Interface specific |
| 43 | +"ui.cursorline.primary" = { bg = "bgHighlight" } |
| 44 | +"ui.cursorline.secondary" = { bg = "bgAlt" } |
| 45 | +"ui.cursorcolumn.primary" = { bg = "bgHighlight" } |
| 46 | +"ui.cursorcolumn.secondary" = { bg = "bgAlt" } |
| 47 | +"ui.statusline.normal" = { fg = "fg", bg = "bg" } |
| 48 | +"ui.statusline.insert" = { fg = "green", bg = "bg" } |
| 49 | +"ui.statusline.select" = { fg = "blue", bg = "bg" } |
| 50 | +"ui.statusline.command" = { fg = "red", bg = "bg" } |
| 51 | +"ui.statusline.visual" = { fg = "purple", bg = "bg" } |
| 52 | + |
| 53 | +# Diagnostic styles |
| 54 | +"warning" = { fg = "yellow", modifiers = ["bold"] } |
| 55 | +"error" = { fg = "red", modifiers = ["bold"] } |
| 56 | +"info" = { fg = "cyan", modifiers = ["bold"] } |
| 57 | +"hint" = { fg = "blue", modifiers = ["bold"] } |
| 58 | +"diagnostic.error" = { fg = "red" } |
| 59 | +"diagnostic.warning" = { fg = "yellow" } |
| 60 | +"diagnostic.info" = { fg = "cyan" } |
| 61 | +"diagnostic.hint" = { fg = "blue" } |
| 62 | + |
| 63 | +# Popups and Menus |
| 64 | +"ui.popup" = { fg = "fg", bg = "bg" } |
| 65 | +"ui.popup.info" = { fg = "cyan", bg = "bgAlt" } |
| 66 | +"ui.menu" = { fg = "fg", bg = "bg" } |
| 67 | +"ui.menu.selected" = { fg = "bg", bg = "fg" } |
| 68 | + |
| 69 | +# Additional overrides |
| 70 | +"ui.virtual.whitespace" = "grey" |
| 71 | +"ui.virtual.indent-guide" = { fg = "grey", style = "dotted" } |
| 72 | + |
| 73 | +[palette] |
| 74 | +bg = "#ffffff" |
| 75 | +fg = "#16181a" |
| 76 | +grey = "#7b8496" |
| 77 | +blue = "#0057d1" |
| 78 | +green = "#008b0c" |
| 79 | +cyan = "#008c99" |
| 80 | +red = "#d11500" |
| 81 | +yellow = "#997b00" |
| 82 | +magenta = "#d100bf" |
| 83 | +pink = "#f40064" |
| 84 | +orange = "#d17c00" |
| 85 | +purple = "#a018ff" |
| 86 | +bgAlt = "#eaeaea" |
| 87 | +bgHighlight = "#acacac" |
0 commit comments