mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 09:26:19 +04:00
776686ab24
* feat(theme): add separate diagnostic colors This commit adds separate diagnostic highlight colors for the different types of LSP severities. If the severity type doesn't exist or is unknown, we use some fallback coloring which was in use before this commit. Some initial color options were also added in the theme.toml Resolves issue #2157 * feat(theme): add docs for new diagnostic options * feat(theme): adjust defaults & reduce redundancy - the different colors for different diagnostic severities are now disabled in the default theme, instead diagnostics are just generally underlined (as prior to the changes of this feature) - the theme querying is now done once instead of every iteration in the loop of processing every diagnostic message
99 lines
2.7 KiB
TOML
99 lines
2.7 KiB
TOML
attribute = "lilac"
|
|
keyword = "almond"
|
|
"keyword.directive" = "lilac" # -- preprocessor comments (#if in C)
|
|
namespace = "lilac"
|
|
punctuation = "lavender"
|
|
"punctuation.delimiter" = "lavender"
|
|
operator = "lilac"
|
|
special = "honey"
|
|
variable.other.member = "white"
|
|
variable = "lavender"
|
|
# variable = "almond" # TODO: metavariables only
|
|
# "variable.parameter" = { fg = "lavender", modifiers = ["underlined"] }
|
|
"variable.parameter" = { fg = "lavender" }
|
|
"variable.builtin" = "mint"
|
|
type = "white"
|
|
"type.builtin" = "white" # TODO: distinguish?
|
|
constructor = "lilac"
|
|
function = "white"
|
|
"function.macro" = "lilac"
|
|
"function.builtin" = "white"
|
|
tag = "almond"
|
|
comment = "sirocco"
|
|
constant = "white"
|
|
"constant.builtin" = "white"
|
|
string = "silver"
|
|
"constant.numeric" = "chamois"
|
|
"constant.character.escape" = "honey"
|
|
# used for lifetimes
|
|
label = "honey"
|
|
|
|
"markup.heading" = "lilac"
|
|
"markup.bold" = { modifiers = ["bold"] }
|
|
"markup.italic" = { modifiers = ["italic"] }
|
|
"markup.link.url" = { fg = "silver", modifiers = ["underlined"] }
|
|
"markup.link.text" = "almond"
|
|
"markup.raw" = "almond"
|
|
|
|
"diff.plus" = "#35bf86"
|
|
"diff.minus" = "#f22c86"
|
|
"diff.delta" = "#6f44f0"
|
|
|
|
# TODO: diferentiate doc comment
|
|
# concat (ERROR) @error.syntax and "MISSING ;" selectors for errors
|
|
|
|
"ui.background" = { bg = "midnight" }
|
|
"ui.linenr" = { fg = "comet" }
|
|
"ui.linenr.selected" = { fg = "lilac" }
|
|
"ui.statusline" = { fg = "lilac", bg = "revolver" }
|
|
"ui.statusline.inactive" = { fg = "lavender", bg = "revolver" }
|
|
"ui.popup" = { bg = "revolver" }
|
|
"ui.window" = { fg = "bossanova" }
|
|
"ui.help" = { bg = "#7958DC", fg = "#171452" }
|
|
|
|
"ui.text" = { fg = "lavender" }
|
|
"ui.text.focus" = { fg = "white" }
|
|
"ui.virtual" = { fg = "comet" }
|
|
|
|
"ui.selection" = { bg = "#540099" }
|
|
"ui.selection.primary" = { bg = "#540099" }
|
|
# TODO: namespace ui.cursor as ui.selection.cursor?
|
|
"ui.cursor.select" = { bg = "delta" }
|
|
"ui.cursor.insert" = { bg = "white" }
|
|
"ui.cursor.match" = { fg = "#212121", bg = "#6C6999" }
|
|
"ui.cursor" = { modifiers = ["reversed"] }
|
|
"ui.highlight" = { bg = "bossanova" }
|
|
|
|
"ui.menu.selected" = { fg = "revolver", bg = "white" }
|
|
|
|
diagnostic = { modifiers = ["underlined"] }
|
|
# "diagnostic.hint" = { fg = "revolver", bg = "lilac" }
|
|
# "diagnostic.info" = { fg = "revolver", bg = "lavender" }
|
|
# "diagnostic.warning" = { fg = "revolver", bg = "honey" }
|
|
# "diagnostic.error" = { fg = "revolver", bg = "apricot" }
|
|
|
|
warning = "lightning"
|
|
error = "apricot"
|
|
info = "delta"
|
|
hint = "silver"
|
|
|
|
[palette]
|
|
white = "#ffffff"
|
|
lilac = "#dbbfef"
|
|
lavender = "#a4a0e8"
|
|
comet = "#5a5977"
|
|
bossanova = "#452859"
|
|
midnight = "#3b224c"
|
|
revolver = "#281733"
|
|
|
|
silver = "#cccccc"
|
|
sirocco = "#697C81"
|
|
mint = "#9ff28f"
|
|
almond = "#eccdba"
|
|
chamois = "#E8DCA0"
|
|
honey = "#efba5d"
|
|
|
|
apricot = "#f47868"
|
|
lightning = "#ffcd1c"
|
|
delta = "#6F44F0"
|