mirror of https://github.com/helix-editor/helix
material theme: add diagnostics and other missing stuff (#10290)
parent
6f5ea6be58
commit
1e7c01d75b
|
@ -85,19 +85,28 @@
|
||||||
"ui.highlight" = { bg = "highlight" }
|
"ui.highlight" = { bg = "highlight" }
|
||||||
|
|
||||||
"ui.menu" = { bg = "highlight", fg = "text" }
|
"ui.menu" = { bg = "highlight", fg = "text" }
|
||||||
|
"ui.menu.selected" = { bg = "blue", fg = "bg" }
|
||||||
|
|
||||||
"ui.help" = { bg = "highlight", fg = "text" }
|
"ui.help" = { bg = "highlight", fg = "text" }
|
||||||
|
|
||||||
"ui.popup" = { bg = "highlight", fg = "text" }
|
"ui.popup" = { bg = "highlight", fg = "text" }
|
||||||
|
|
||||||
|
"ui.virtual.jump-label" = { fg = "purple", modifiers = ["bold"] }
|
||||||
|
|
||||||
warning = "yellow"
|
warning = "yellow"
|
||||||
error = "error"
|
error = "error"
|
||||||
info = "blue"
|
info = "blue"
|
||||||
hint = "purple"
|
hint = "purple"
|
||||||
|
|
||||||
|
"diagnostic" = { underline = { color = "error", style = "curl" } }
|
||||||
|
"diagnostic.info" = { underline = { color = "blue", style = "curl" } }
|
||||||
|
"diagnostic.hint" = { underline = { color = "purple", style = "curl" } }
|
||||||
|
"diagnostic.error" = { underline = { color = "error", style = "curl" } }
|
||||||
|
"diagnostic.warning" = { underline = { color = "yellow", style = "curl" } }
|
||||||
"diagnostic.unnecessary" = { modifiers = ["dim"]}
|
"diagnostic.unnecessary" = { modifiers = ["dim"]}
|
||||||
"diagnostic.deprecated" = { modifiers = ["crossed_out"]}
|
"diagnostic.deprecated" = { modifiers = ["crossed_out"]}
|
||||||
|
|
||||||
|
|
||||||
[palette]
|
[palette]
|
||||||
bg = "#0f111a"
|
bg = "#0f111a"
|
||||||
text = "#a6accd"
|
text = "#a6accd"
|
||||||
|
|
Loading…
Reference in New Issue