2025-01-05 16:55:28 +00:00
# NOTE: For contributors looking to modify the theme, please submit a pull request at https://github.com/catppuccin/helix instead of updating this file. Changes are frequently synchronized from the catppuccin/helix theme repository.
2022-08-01 22:23:23 +02:00
# Syntax highlighting
# -------------------
2024-06-14 22:34:33 -04:00
"attribute" = "yellow"
2022-08-01 22:23:23 +02:00
"type" = "yellow"
2024-06-14 22:34:33 -04:00
"type.enum.variant" = "teal"
2022-08-01 22:23:23 +02:00
"constructor" = "sapphire"
"constant" = "peach"
"constant.character" = "teal"
"constant.character.escape" = "pink"
"string" = "green"
2024-06-14 22:34:33 -04:00
"string.regexp" = "pink"
2023-01-11 03:14:40 +01:00
"string.special" = "blue"
2024-06-14 22:34:33 -04:00
"string.special.symbol" = "red"
2022-08-01 22:23:23 +02:00
2024-06-14 22:34:33 -04:00
"comment" = { fg = "overlay2" , modifiers = [ "italic" ] }
2022-08-01 22:23:23 +02:00
"variable" = "text"
"variable.parameter" = { fg = "maroon" , modifiers = [ "italic" ] }
"variable.builtin" = "red"
2024-12-20 10:43:45 -05:00
"variable.other.member" = "blue"
2022-08-01 22:23:23 +02:00
"label" = "sapphire" # used for lifetimes
"punctuation" = "overlay2"
2023-01-11 03:14:40 +01:00
"punctuation.special" = "sky"
2022-08-01 22:23:23 +02:00
"keyword" = "mauve"
"keyword.control.conditional" = { fg = "mauve" , modifiers = [ "italic" ] }
"operator" = "sky"
"function" = "blue"
2023-01-11 03:14:40 +01:00
"function.macro" = "mauve"
2022-08-01 22:23:23 +02:00
2024-06-14 22:34:33 -04:00
"tag" = "blue"
2022-08-01 22:23:23 +02:00
2024-06-14 22:34:33 -04:00
"namespace" = { fg = "yellow" , modifiers = [ "italic" ] }
2022-08-01 22:23:23 +02:00
"special" = "blue" # fuzzy highlight
"markup.heading.marker" = { fg = "peach" , modifiers = [ "bold" ] }
"markup.heading.1" = "lavender"
"markup.heading.2" = "mauve"
"markup.heading.3" = "green"
"markup.heading.4" = "yellow"
"markup.heading.5" = "pink"
"markup.heading.6" = "teal"
"markup.list" = "mauve"
2024-12-02 18:37:01 +00:00
"markup.list.unchecked" = "overlay2"
"markup.list.checked" = "green"
2024-12-20 10:43:45 -05:00
"markup.bold" = { modifiers = [ "bold" ] }
"markup.italic" = { modifiers = [ "italic" ] }
2024-06-14 22:34:33 -04:00
"markup.link.url" = { fg = "blue" , modifiers = [ "italic" , "underlined" ] }
2022-08-01 22:23:23 +02:00
"markup.link.text" = "blue"
"markup.raw" = "flamingo"
"diff.plus" = "green"
"diff.minus" = "red"
2023-01-11 03:14:40 +01:00
"diff.delta" = "blue"
2022-08-01 22:23:23 +02:00
# User Interface
# --------------
"ui.background" = { fg = "text" , bg = "base" }
"ui.linenr" = { fg = "surface1" }
"ui.linenr.selected" = { fg = "lavender" }
2023-03-28 17:54:17 +03:00
"ui.statusline" = { fg = "subtext1" , bg = "mantle" }
2023-01-11 03:14:40 +01:00
"ui.statusline.inactive" = { fg = "surface2" , bg = "mantle" }
"ui.statusline.normal" = { fg = "base" , bg = "lavender" , modifiers = [ "bold" ] }
2024-06-14 22:34:33 -04:00
"ui.statusline.insert" = { fg = "base" , bg = "green" , modifiers = [ "bold" ] }
"ui.statusline.select" = { fg = "base" , bg = "flamingo" , modifiers = [ "bold" ] }
2022-09-24 01:02:37 +05:30
2022-08-01 22:23:23 +02:00
"ui.popup" = { fg = "text" , bg = "surface0" }
"ui.window" = { fg = "crust" }
"ui.help" = { fg = "overlay2" , bg = "surface0" }
2023-03-28 17:54:17 +03:00
"ui.bufferline" = { fg = "subtext0" , bg = "mantle" }
"ui.bufferline.active" = { fg = "mauve" , bg = "base" , underline = { color = "mauve" , style = "line" } }
"ui.bufferline.background" = { bg = "crust" }
2023-01-11 03:14:40 +01:00
"ui.text" = "text"
2022-08-01 22:23:23 +02:00
"ui.text.focus" = { fg = "text" , bg = "surface0" , modifiers = [ "bold" ] }
2023-08-29 01:03:54 +02:00
"ui.text.inactive" = { fg = "overlay1" }
2024-12-18 03:13:42 +00:00
"ui.text.directory" = { fg = "blue" }
2022-08-01 22:23:23 +02:00
"ui.virtual" = "overlay0"
"ui.virtual.ruler" = { bg = "surface0" }
"ui.virtual.indent-guide" = "surface0"
2024-06-14 22:34:33 -04:00
"ui.virtual.inlay-hint" = { fg = "surface1" , bg = "mantle" }
2024-03-24 00:02:26 -07:00
"ui.virtual.jump-label" = { fg = "rosewater" , modifiers = [ "bold" ] }
2022-08-01 22:23:23 +02:00
"ui.selection" = { bg = "surface1" }
"ui.cursor" = { fg = "base" , bg = "secondary_cursor" }
"ui.cursor.primary" = { fg = "base" , bg = "rosewater" }
"ui.cursor.match" = { fg = "peach" , modifiers = [ "bold" ] }
2023-08-29 01:03:54 +02:00
"ui.cursor.primary.normal" = { fg = "base" , bg = "lavender" }
"ui.cursor.primary.insert" = { fg = "base" , bg = "green" }
"ui.cursor.primary.select" = { fg = "base" , bg = "flamingo" }
"ui.cursor.normal" = { fg = "base" , bg = "secondary_cursor_normal" }
"ui.cursor.insert" = { fg = "base" , bg = "secondary_cursor_insert" }
"ui.cursor.select" = { fg = "base" , bg = "secondary_cursor" }
2022-08-01 22:23:23 +02:00
"ui.cursorline.primary" = { bg = "cursorline" }
2023-01-11 03:14:40 +01:00
"ui.highlight" = { bg = "surface1" , modifiers = [ "bold" ] }
2022-08-01 22:23:23 +02:00
"ui.menu" = { fg = "overlay2" , bg = "surface0" }
"ui.menu.selected" = { fg = "text" , bg = "surface1" , modifiers = [ "bold" ] }
2025-01-03 15:13:44 +01:00
"diagnostic.unnecessary" = { modifiers = [ "dim" ] }
2023-02-26 14:29:16 -07:00
"diagnostic.error" = { underline = { color = "red" , style = "curl" } }
"diagnostic.warning" = { underline = { color = "yellow" , style = "curl" } }
"diagnostic.info" = { underline = { color = "sky" , style = "curl" } }
"diagnostic.hint" = { underline = { color = "teal" , style = "curl" } }
2022-08-01 22:23:23 +02:00
error = "red"
warning = "yellow"
info = "sky"
hint = "teal"
[ palette ]
rosewater = "#f5e0dc"
flamingo = "#f2cdcd"
pink = "#f5c2e7"
mauve = "#cba6f7"
red = "#f38ba8"
maroon = "#eba0ac"
peach = "#fab387"
yellow = "#f9e2af"
green = "#a6e3a1"
teal = "#94e2d5"
sky = "#89dceb"
sapphire = "#74c7ec"
blue = "#89b4fa"
lavender = "#b4befe"
text = "#cdd6f4"
subtext1 = "#bac2de"
subtext0 = "#a6adc8"
overlay2 = "#9399b2"
overlay1 = "#7f849c"
overlay0 = "#6c7086"
surface2 = "#585b70"
surface1 = "#45475a"
surface0 = "#313244"
base = "#1e1e2e"
mantle = "#181825"
crust = "#11111b"
cursorline = "#2a2b3c"
2022-09-24 01:02:37 +05:30
secondary_cursor = "#b5a6a8"
2023-08-29 01:03:54 +02:00
secondary_cursor_normal = "#878ec0"
2024-06-14 22:34:33 -04:00
secondary_cursor_insert = "#7ea87f"