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