1
0
Fork 0
mirror of https://github.com/helix-editor/helix synced 2024-05-18 03:06:05 +02:00
helix/theme.toml

62 lines
2.0 KiB
INI
Raw Normal View History

2021-03-25 08:42:14 +01:00
"attribute" = "#dbbfef" # lilac
"keyword" = "#eccdba" # almond
2021-04-23 11:42:29 +02:00
"keyword.directive" = "#dbbfef" # lilac -- preprocessor comments (#if in C)
2021-05-16 11:58:27 +02:00
"namespace" = "#dbbfef" # lilac
2021-03-25 08:42:14 +01:00
"punctuation" = "#a4a0e8" # lavender
"punctuation.delimiter" = "#a4a0e8" # lavender
"operator" = "#dbbfef" # lilac
2021-05-16 11:58:27 +02:00
"special" = "#efba5d" # honey
# "property" = "#a4a0e8" # lavender
"property" = "#ffffff" # white
2021-04-23 11:42:29 +02:00
"variable" = "#a4a0e8" # lavender
# "variable" = "#eccdba" # almond TODO: metavariables only
2021-03-25 08:42:14 +01:00
"variable.parameter" = "#a4a0e8" # lavender
# TODO distinguish type from type.builtin?
"type" = "#ffffff" # white
"type.builtin" = "#ffffff" # white
"constructor" = "#dbbfef" # lilac
"function" = "#ffffff" # white
"function.macro" = "#dbbfef" # lilac
2021-04-07 06:51:09 +02:00
"function.builtin" = "#ffffff" # white
2021-03-25 08:42:14 +01:00
"comment" = "#697C81" # sirocco
"variable.builtin" = "#9ff28f" # mint
"constant" = "#ffffff" # white
"constant.builtin" = "#ffffff" # white
"string" = "#cccccc" # silver
"number" = "#e8dca0" # chamois
2021-03-25 08:42:14 +01:00
"escape" = "#efba5d" # honey
# used for lifetimes
"label" = "#efba5d" # honey
# TODO: diferentiate number builtin
# TODO: diferentiate doc comment
# TODO: variable as lilac
# TODO: mod/use statements as white
# TODO: mod stuff as chamois
2021-03-25 08:42:14 +01:00
#
# concat (ERROR) @syntax-error and "MISSING ;" selectors for errors
"module" = "#ff0000"
"ui.background" = { bg = "#3b224c" } # midnight
"ui.linenr" = { fg = "#5a5977" } # comet
"ui.linenr.selected" = { fg = "#dbbfef" } # lilac
"ui.statusline" = { fg = "#dbbfef", bg = "#281733" } # revolver
"ui.statusline.inactive" = { fg = "#a4a0e8", bg = "#281733" } # revolver
2021-03-25 08:42:14 +01:00
"ui.popup" = { bg = "#281733" } # revolver
"ui.window" = { bg = "#452859" } # bossa nova
2021-06-01 05:00:25 +02:00
"ui.window" = { bg = "#452859" } # bossa nova
"ui.help" = { bg = "#6F44F0", fg = "#a4a0e8" }
"ui.help" = { bg = "#7958DC", fg = "#171452" }
2021-03-25 08:42:14 +01:00
2021-06-01 05:00:25 +02:00
"ui.text" = { fg = "#a4a0e8" } # lavender
"ui.text.focus" = { fg = "#dbbfef"} # lilac
"ui.selection" = { bg = "#540099" }
"ui.menu.selected" = { fg = "#281733", bg = "#ffffff" } # revolver
2021-03-25 08:42:14 +01:00
"warning" = "#ffcd1c"
"error" = "#f47868"
"info" = "#6F44F0"
"hint" = "#cccccc"