Personalised version of catppuccin for Helix, with my own colours.
0
catppuccin_waddie.toml
173 lines 4.8 kB view raw
1# Syntax highlighting 2"attribute" = "peach" 3 4"type" = "rosewater" 5"type.enum.variant" = "teal" 6 7"constructor" = "sapphire" 8 9"constant" = "sky" 10"constant.character" = "teal" 11"constant.character.escape" = "pink" 12 13"string" = "green" 14"string.regexp" = "pink" 15"string.special" = "blue" 16"string.special.symbol" = "red" 17 18"comment" = { fg = "overlay2", modifiers = ["italic"] } 19 20"variable" = "text" 21"variable.parameter" = { fg = "maroon" } 22"variable.builtin" = "red" 23"variable.other.member" = "blue" 24 25"label" = "sapphire" # used for lifetimes 26 27"punctuation" = "overlay2" 28"punctuation.special" = "sky" 29 30"keyword" = "mauve" 31"keyword.control.conditional" = { fg = "mauve" } 32 33"operator" = "sky" 34 35"function" = "blue" 36"function.macro" = "sky" 37 38"tag" = "blue" 39 40"namespace" = { fg = "rosewater", modifiers = ["italic"] } 41 42"special" = "blue" # fuzzy highlight 43 44"markup.heading.1" = "red" 45"markup.heading.2" = "peach" 46"markup.heading.3" = "yellow" 47"markup.heading.4" = "green" 48"markup.heading.5" = "sapphire" 49"markup.heading.6" = "lavender" 50"markup.list" = "teal" 51"markup.list.unchecked" = "overlay2" 52"markup.list.checked" = "green" 53"markup.bold" = { fg = "red", modifiers = ["bold"] } 54"markup.italic" = { fg = "red", modifiers = ["italic"] } 55"markup.link.url" = { fg = "blue", modifiers = ["italic", "underlined"] } 56"markup.link.text" = "lavender" 57"markup.link.label" = "sapphire" 58"markup.raw" = "green" 59"markup.quote" = "pink" 60 61"diff.plus" = "green" 62"diff.minus" = "red" 63"diff.delta" = "blue" 64 65# User Interface 66"ui.background" = { fg = "text" } 67 68"ui.linenr" = { fg = "surface1" } 69"ui.linenr.selected" = { fg = "lavender" } 70 71"ui.statusline" = { fg = "subtext1", bg = "mantle" } 72"ui.statusline.inactive" = { fg = "surface2", bg = "mantle" } 73"ui.statusline.normal" = { fg = "base", bg = "rosewater", modifiers = ["bold"] } 74"ui.statusline.insert" = { fg = "base", bg = "green", modifiers = ["bold"] } 75"ui.statusline.select" = { fg = "base", bg = "lavender", modifiers = ["bold"] } 76 77"ui.popup" = { fg = "text", bg = "surface0" } 78"ui.window" = { fg = "crust" } 79"ui.help" = { fg = "overlay2", bg = "surface0" } 80 81"ui.bufferline" = { fg = "subtext0", bg = "mantle" } 82"ui.bufferline.active" = { fg = "mauve", bg = "base", underline = { color = "mauve", style = "line" } } 83"ui.bufferline.background" = { bg = "crust" } 84 85"ui.text" = "text" 86"ui.text.focus" = { fg = "text", bg = "surface0", modifiers = ["bold"] } 87"ui.text.inactive" = { fg = "overlay1" } 88"ui.text.directory" = { fg = "blue" } 89 90"ui.virtual" = "overlay0" 91"ui.virtual.ruler" = { bg = "surface0" } 92"ui.virtual.indent-guide" = "surface0" 93"ui.virtual.inlay-hint" = { fg = "surface1", bg = "mantle" } 94"ui.virtual.jump-label" = { fg = "rosewater", modifiers = ["bold"] } 95 96"ui.selection" = { fg = "selectfg", bg = "selectbg" } 97 98"ui.cursor" = { fg = "base", bg = "secondary_cursor" } 99"ui.cursor.primary" = { fg = "base", bg = "rosewater" } 100"ui.cursor.match" = { fg = "peach", modifiers = ["bold"] } 101 102"ui.cursor.primary.normal" = { fg = "base", bg = "yellow" } 103"ui.cursor.primary.insert" = { fg = "base", bg = "green" } 104"ui.cursor.primary.select" = { fg = "base", bg = "lavender" } 105 106"ui.cursor.normal" = { fg = "base", bg = "secondary_cursor_normal" } 107"ui.cursor.insert" = { fg = "base", bg = "secondary_cursor_insert" } 108"ui.cursor.select" = { fg = "base", bg = "secondary_cursor_select" } 109 110"ui.cursorline.primary" = { bg = "cursorline" } 111 112"ui.highlight" = { bg = "surface1", modifiers = ["bold"] } 113 114"ui.menu" = { fg = "overlay2", bg = "surface0" } 115"ui.menu.selected" = { fg = "text", bg = "surface1", modifiers = ["bold"] } 116 117"diagnostic.error" = { underline = { color = "red", style = "curl" } } 118"diagnostic.warning" = { underline = { color = "peach", style = "curl" } } 119"diagnostic.info" = { underline = { color = "sky", style = "curl" } } 120"diagnostic.hint" = { underline = { color = "teal", style = "curl" } } 121"diagnostic.unnecessary" = { modifiers = ["dim"] } 122 123error = "red" 124warning = "peach" 125info = "sky" 126hint = "teal" 127 128rainbow = [ 129 "sapphire", 130 "maroon", 131 "mauve", 132 "green", 133 "yellow", 134 "blue", 135 "peach" 136] 137 138[palette] 139rosewater = "#ffefef" 140flamingo = "#ffc0c1" 141pink = "#ff9395" 142mauve = "#bdabff" 143red = "#f67d80" 144maroon = "#d46065" 145peach = "#f5a648" 146yellow = "#f8de7e" 147green = "#d1dba0" 148teal = "#f1fcbf" 149sky = "#bcd8f6" 150sapphire = "#6c87a3" 151blue = "#9bb7d4" 152lavender = "#dac6ff" 153text = "#f8de7e" 154subtext1 = "#d4bc5e" 155subtext0 = "#b49f42" 156overlay2 = "#b7b8c2" 157overlay1 = "#9c9da7" 158overlay0 = "#82838c" 159surface2 = "#696a73" 160surface1 = "#53545d" 161surface0 = "#3f3f47" 162base = "#16161d" 163mantle = "#202128" 164crust = "#05140b" 165 166selectfg = "#501b00" 167selectbg = "#ffc263" 168 169cursorline = "#2b2c33" 170secondary_cursor = "#f8de7e" 171secondary_cursor_normal = "#968225" 172secondary_cursor_insert = "#d1dba0" 173secondary_cursor_select = "#dac6ff"