Change built-in themes to use curly underlines (#5419)
* Change built-in themes to use curly underlines * Change fleet_dark to use curly underlines
This commit is contained in:
parent
4e9a0700db
commit
c988bd9629
53 changed files with 237 additions and 81 deletions
|
@ -54,10 +54,10 @@
|
|||
"error" = { fg = "red", modifiers = ["bold"] }
|
||||
"info" = { fg = "blue", modifiers = ["bold"] }
|
||||
"hint" = { fg = "blue", modifiers = ["bold"] }
|
||||
"diagnostic"= { fg = "red", modifiers = ["underlined"] }
|
||||
"diagnostic.info"= { fg = "blue", modifiers = ["underlined"] }
|
||||
"diagnostic.warning"= { fg = "yellow", modifiers = ["underlined"] }
|
||||
"diagnostic.error"= { fg = "red", modifiers = ["underlined"] }
|
||||
"diagnostic.hint" = { underline = { color = "blue", style="curl"} }
|
||||
"diagnostic.info"= { underline = { color = "blue", style="curl"} }
|
||||
"diagnostic.warning"= { underline = { color = "yellow", style="curl"} }
|
||||
"diagnostic.error"= { underline = { color = "red", style="curl"} }
|
||||
"ui.bufferline" = { fg = "gray", bg = "background" }
|
||||
"ui.bufferline.active" = { fg = "foreground", bg = "dark_gray" }
|
||||
|
||||
|
|
|
@ -54,10 +54,10 @@
|
|||
"error" = { fg = "red", modifiers = ["bold"] }
|
||||
"info" = { fg = "blue", modifiers = ["bold"] }
|
||||
"hint" = { fg = "blue", modifiers = ["bold"] }
|
||||
"diagnostic"= { fg = "red", modifiers = ["underlined"] }
|
||||
"diagnostic.info"= { fg = "blue", modifiers = ["underlined"] }
|
||||
"diagnostic.warning"= { fg = "yellow", modifiers = ["underlined"] }
|
||||
"diagnostic.error"= { fg = "red", modifiers = ["underlined"] }
|
||||
"diagnostic.hint"= { underline = { color = "blue", style = "curl" } }
|
||||
"diagnostic.info"= { underline = { color = "blue", style = "curl" } }
|
||||
"diagnostic.warning"= { underline = { color = "yellow", style = "curl" } }
|
||||
"diagnostic.error"= { underline = { color = "red", style = "curl" } }
|
||||
"ui.bufferline" = { fg = "gray", bg = "background" }
|
||||
"ui.bufferline.active" = { fg = "foreground", bg = "dark_gray" }
|
||||
|
||||
|
|
|
@ -54,10 +54,10 @@
|
|||
"error" = { fg = "red", modifiers = ["bold"] }
|
||||
"info" = { fg = "blue", modifiers = ["bold"] }
|
||||
"hint" = { fg = "blue", modifiers = ["bold"] }
|
||||
"diagnostic"= { fg = "red", modifiers = ["underlined"] }
|
||||
"diagnostic.info"= { fg = "blue", modifiers = ["underlined"] }
|
||||
"diagnostic.warning"= { fg = "yellow", modifiers = ["underlined"] }
|
||||
"diagnostic.error"= { fg = "red", modifiers = ["underlined"] }
|
||||
"diagnostic.hint"= { underline = { color = "blue", style = "curl" } }
|
||||
"diagnostic.info"= { underline = { color = "blue", style = "curl" } }
|
||||
"diagnostic.warning"= { underline = { color = "yellow", style = "curl" } }
|
||||
"diagnostic.error"= { underline = { color = "red", style = "curl" } }
|
||||
"ui.bufferline" = { fg = "gray", bg = "background" }
|
||||
"ui.bufferline.active" = { fg = "foreground", bg = "dark_gray" }
|
||||
|
||||
|
|
|
@ -72,7 +72,10 @@
|
|||
"hint" = "bogster-blue"
|
||||
|
||||
# make diagnostic underlined, to distinguish with selection text.
|
||||
diagnostic = { modifiers = ["underlined"] }
|
||||
"diagnostic.warning" = { underline = { color = "bogster-orange", style = "curl"} }
|
||||
"diagnostic.error" = { underline = { color = "bogster-lred", style = "curl"} }
|
||||
"diagnostic.info" = { underline = { color = "bogster-teal", style = "curl"} }
|
||||
"diagnostic.hint" = { underline = { color = "bogster-blue", style = "curl"} }
|
||||
|
||||
[palette]
|
||||
bogster-yellow = "#dcb659"
|
||||
|
|
|
@ -72,7 +72,10 @@
|
|||
"hint" = "bogster-blue"
|
||||
|
||||
# make diagnostic underlined, to distinguish with selection text.
|
||||
diagnostic = { modifiers = ["underlined"] }
|
||||
"diagnostic.warning" = { underline = { color = "bogster-orange", style = "curl"} }
|
||||
"diagnostic.error" = { underline = { color = "bogster-lred", style = "curl"} }
|
||||
"diagnostic.info" = { underline = { color = "bogster-teal", style = "curl"} }
|
||||
"diagnostic.hint" = { underline = { color = "bogster-blue", style = "curl"} }
|
||||
|
||||
[palette]
|
||||
bogster-orange = "#dc7759"
|
||||
|
|
|
@ -60,7 +60,11 @@
|
|||
"warning" = { fg = "gold" }
|
||||
"info" = { fg = "lilac" }
|
||||
"hint" = { fg = "lilac" }
|
||||
"diagnostic" = { modifiers = ["underlined"] }
|
||||
|
||||
"diagnostic.warning" = { underline = { color = "bubblegum", style = "curl"} }
|
||||
"diagnostic.error" = { underline = { color = "gold", style = "curl"} }
|
||||
"diagnostic.info" = { underline = { color = "lilac", style = "curl"} }
|
||||
"diagnostic.hint" = { underline = { color = "lilac", style = "curl"} }
|
||||
|
||||
[palette]
|
||||
berry = "#3A2A4D"
|
||||
|
|
|
@ -65,7 +65,11 @@
|
|||
"diff.delta" = "grey"
|
||||
"diff.minus" = "red"
|
||||
|
||||
"diagnostic" = { modifiers = ["underlined"] }
|
||||
"diagnostic.warning" = { underline = { color = "orange", style = "curl"} }
|
||||
"diagnostic.error" = { underline = { color = "red", style = "curl"} }
|
||||
"diagnostic.info" = { underline = { color = "grey05", style = "curl"} }
|
||||
"diagnostic.hint" = { underline = { color = "grey05", style = "curl"} }
|
||||
|
||||
"info" = "grey05"
|
||||
"hint" = "grey05"
|
||||
"debug" = "grey05"
|
||||
|
|
|
@ -73,10 +73,10 @@
|
|||
'info' = { fg = 'blue', modifiers = ['bold'] }
|
||||
'hint' = { fg = 'blue', modifiers = ['bold'] }
|
||||
|
||||
'diagnostic'= { fg = 'red', modifiers = ['underlined'] }
|
||||
'diagnostic.error'= { fg = 'red', modifiers = ['underlined'] }
|
||||
'diagnostic.info'= { fg = 'blue', modifiers = ['underlined'] }
|
||||
'diagnostic.warning'= { fg = 'yellow', modifiers = ['underlined'] }
|
||||
'diagnostic.hint'= { underline = { color = 'red', style = "curl"} }
|
||||
'diagnostic.error'= { underline = { color = 'red', style = "curl"} }
|
||||
'diagnostic.info'= { underline = { color = 'blue', style = "curl"} }
|
||||
'diagnostic.warning'= { underline = { color = 'yellow', style = "curl"} }
|
||||
|
||||
'special' = { fg = 'orange' }
|
||||
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
|
||||
"ui.background" = { fg = "black", bg = "white" }
|
||||
"ui.background.separator" = { fg = "black", bg = "white" }
|
||||
"ui.cursor" = { fg = "white", bg = "gray70" }
|
||||
"ui.cursor" = { fg = "white", bg = "gray70" }
|
||||
"ui.cursor.primary" = { fg = "white", bg = "black" }
|
||||
"ui.cursor.match" = { fg = "black", bg = "turquoise" }
|
||||
"ui.cursor.select" = { fg = "white", bg = "black" }
|
||||
|
@ -68,7 +68,7 @@
|
|||
"ui.selection" = { bg = "lightgoldenrod1" }
|
||||
"ui.selection.primary" = { bg = "lightgoldenrod2" }
|
||||
"ui.virtual.whitespace" = "highlight"
|
||||
"ui.virtual.ruler" = { bg ="gray95" }
|
||||
"ui.virtual.ruler" = { bg = "gray95" }
|
||||
"ui.cursorline.primary" = { bg = "darkseagreen2" }
|
||||
"ui.cursorline.secondary" = { bg = "darkseagreen2" }
|
||||
|
||||
|
@ -80,7 +80,11 @@
|
|||
"warning" = { fg = "dark_orange" }
|
||||
"info" = { fg = "forest_green" }
|
||||
"hint" = { fg = "dark_cyan" }
|
||||
"diagnostic" = { modifiers = ["underlined"] }
|
||||
|
||||
"diagnostic.error" = { underline = { color = "red1", style = "curl" } }
|
||||
"diagnostic.warning" = { underline = { color = "dark_orange", style = "curl" } }
|
||||
"diagnostic.info" = { underline = { color = "forest_green", style = "curl" } }
|
||||
"diagnostic.hint" = { underline = { color = "dark_cyan", style = "curl" } }
|
||||
|
||||
[palette]
|
||||
black = "#000000"
|
||||
|
|
|
@ -88,7 +88,12 @@
|
|||
"info" = "aqua"
|
||||
"warning" = "yellow"
|
||||
"error" = "red"
|
||||
"diagnostic" = { modifiers = ["underlined"] }
|
||||
|
||||
"diagnostic.hint" = { underline = { color = "blue", style = "curl" } }
|
||||
"diagnostic.info" = { underline = { color = "aqua", style = "curl" } }
|
||||
"diagnostic.warning" = { underline = { color = "yellow", style = "curl" } }
|
||||
"diagnostic.error" = { underline = { color = "red", style = "curl" } }
|
||||
|
||||
|
||||
[palette]
|
||||
|
||||
|
|
|
@ -88,7 +88,11 @@
|
|||
"info" = "aqua"
|
||||
"warning" = "yellow"
|
||||
"error" = "red"
|
||||
"diagnostic" = { modifiers = ["underlined"] }
|
||||
|
||||
"diagnostic.hint" = { underline = { color = "blue", style = "curl" } }
|
||||
"diagnostic.info" = { underline = { color = "aqua", style = "curl" } }
|
||||
"diagnostic.warning" = { underline = { color = "yellow", style = "curl" } }
|
||||
"diagnostic.error" = { underline = { color = "red", style = "curl" } }
|
||||
|
||||
[palette]
|
||||
|
||||
|
|
|
@ -21,6 +21,11 @@
|
|||
"variable.parameter" = { fg = "blue_text", bg = "blue_bg" }
|
||||
|
||||
"diagnostic" = { modifiers = ["underlined"] }
|
||||
|
||||
"diagnostic.info" = { underline = { color = "orange_text", style = "curl" } }
|
||||
"diagnostic.warning" = { underline = { color = "orange_text", style = "curl" } }
|
||||
"diagnostic.error" = { underline = { color = "diff_delete", style = "curl" } }
|
||||
|
||||
"info" = { fg = "orange_text", bg = "orange_bg" }
|
||||
"hint" = { modifiers = ["bold"] }
|
||||
"warning" = { fg = "orange_text", bg = "orange_bg" }
|
||||
|
|
|
@ -91,10 +91,10 @@
|
|||
"warning" = "orange_accent"
|
||||
"error" = "red_error"
|
||||
"diagnostic" = { modifiers = [] }
|
||||
"diagnostic.hint" = { underline = { color = "light", style = "line" } }
|
||||
"diagnostic.info" = { underline = { color = "blue_accent", style = "line" } }
|
||||
"diagnostic.warning" = { underline = { color = "yellow_accent", style = "line" } }
|
||||
"diagnostic.error" = { underline = { color = "red_error", style = "line" } }
|
||||
"diagnostic.hint" = { underline = { color = "light", style = "curl" } }
|
||||
"diagnostic.info" = { underline = { color = "blue_accent", style = "curl" } }
|
||||
"diagnostic.warning" = { underline = { color = "yellow_accent", style = "curl" } }
|
||||
"diagnostic.error" = { underline = { color = "red_error", style = "curl" } }
|
||||
|
||||
[palette]
|
||||
background = "#181818"
|
||||
|
|
|
@ -61,7 +61,10 @@
|
|||
"ui.virtual.whitespace" = "bg2"
|
||||
"ui.virtual.ruler" = { bg = "bg1" }
|
||||
|
||||
"diagnostic" = { modifiers = ["underlined"] }
|
||||
"diagnostic.warning" = { underline = { color = "orange1", style = "curl" } }
|
||||
"diagnostic.error" = { underline = { color = "red1", style = "curl" } }
|
||||
"diagnostic.info" = { underline = { color = "aqua1", style = "curl" } }
|
||||
"diagnostic.hint" = { underline = { color = "blue1", style = "curl" } }
|
||||
|
||||
"markup.heading" = "aqua1"
|
||||
"markup.bold" = { modifiers = ["bold"] }
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
"function.macro" = "aqua1"
|
||||
"function.builtin" = "yellow1"
|
||||
"tag" = "red1"
|
||||
"comment" = { fg = "gray1", modifiers = ["italic"] }
|
||||
"comment" = { fg = "gray1", modifiers = ["italic"] }
|
||||
"constant" = { fg = "purple1" }
|
||||
"constant.builtin" = { fg = "purple1", modifiers = ["bold"] }
|
||||
"string" = "green1"
|
||||
|
@ -39,7 +39,6 @@
|
|||
"info" = { fg = "aqua1", bg = "bg1" }
|
||||
"hint" = { fg = "blue1", bg = "bg1" }
|
||||
|
||||
"diagnostic" = { modifiers = ["underlined"] }
|
||||
"diagnostic.error" = { underline = { style = "curl", color = "red0" } }
|
||||
"diagnostic.warning" = { underline = { style = "curl", color = "orange1" } }
|
||||
"diagnostic.info" = { underline = { style = "curl", color = "aqua1" } }
|
||||
|
@ -91,8 +90,8 @@ fg4 = "#a89984" # gray0
|
|||
gray0 = "#a89984"
|
||||
gray1 = "#928374"
|
||||
|
||||
red0 = "#cc241d" # neutral
|
||||
red1 = "#fb4934" # bright
|
||||
red0 = "#cc241d" # neutral
|
||||
red1 = "#fb4934" # bright
|
||||
green0 = "#98971a"
|
||||
green1 = "#b8bb26"
|
||||
yellow0 = "#d79921"
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
"function.macro" = "aqua1"
|
||||
"function.builtin" = "yellow1"
|
||||
"tag" = "red1"
|
||||
"comment" = { fg = "gray1", modifiers = ["italic"] }
|
||||
"comment" = { fg = "gray1", modifiers = ["italic"] }
|
||||
"constant" = { fg = "purple1" }
|
||||
"constant.builtin" = { fg = "purple1", modifiers = ["bold"] }
|
||||
"string" = "green1"
|
||||
|
@ -62,7 +62,10 @@
|
|||
"ui.virtual.whitespace" = "bg2"
|
||||
"ui.virtual.ruler" = { bg = "bg1" }
|
||||
|
||||
"diagnostic" = { modifiers = ["underlined"] }
|
||||
"diagnostic.warning" = { underline = { color = "orange1", style = "curl" } }
|
||||
"diagnostic.error" = { underline = { color = "red1", style = "curl" } }
|
||||
"diagnostic.info" = { underline = { color = "aqua1", style = "curl" } }
|
||||
"diagnostic.hint" = { underline = { color = "blue1", style = "curl" } }
|
||||
|
||||
"markup.heading" = "aqua1"
|
||||
"markup.bold" = { modifiers = ["bold"] }
|
||||
|
|
|
@ -59,10 +59,10 @@
|
|||
"error" = { fg = "chili_powder_red", modifiers = ["bold"] }
|
||||
"info" = { fg = "crystal_blue", modifiers = ["bold"] }
|
||||
"hint" = { fg = "crystal_blue", modifiers = ["bold"] }
|
||||
"diagnostic"= { fg = "chili_powder_red", modifiers = ["underlined"] }
|
||||
"diagnostic.info"= { fg = "crystal_blue", modifiers = ["underlined"] }
|
||||
"diagnostic.warning"= { fg = "vapor_yellow", modifiers = ["underlined"] }
|
||||
"diagnostic.error"= { fg = "chili_powder_red", modifiers = ["underlined"] }
|
||||
"diagnostic.hint" = { underline = {color = "chili_powder_red", style = "curl" } }
|
||||
"diagnostic.info" = { underline = {color = "crystal_blue", style = "curl" } }
|
||||
"diagnostic.warning" = { underline = {color = "vapor_yellow", style = "curl" } }
|
||||
"diagnostic.error" = { underline = {color = "chili_powder_red", style = "curl" } }
|
||||
"ui.bufferline" = { fg = "gray", bg = "background" }
|
||||
"ui.bufferline.active" = { fg = "foreground", bg = "dark_gray" }
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ inherits = "hex_steel"
|
|||
[palette]
|
||||
t1 = "#0e0e0d"
|
||||
t2 = "#121311"
|
||||
t3 = "#2b3444" #
|
||||
t3 = "#2b3444"
|
||||
t4 = "#61586f"
|
||||
t5 = "#686e73"
|
||||
t6 = "#878480"
|
||||
|
|
|
@ -60,7 +60,11 @@
|
|||
"ui.virtual.indent-guide" = { fg = "t3" }
|
||||
"ui.virtual.whitespace" = { fg = "t3" }
|
||||
|
||||
"diagnostic" = { modifiers = ["underlined"] }
|
||||
"diagnostic.error" = { underline = { color = "error", style = "curl" } }
|
||||
"diagnostic.warning" = { underline = { color = "warning", style = "curl" } }
|
||||
"diagnostic.info" = { underline = { color = "info", style = "curl" } }
|
||||
"diagnostic.hint" = { underline = { color = "display", style = "curl" } }
|
||||
|
||||
"error" = { fg = "error", modifiers = ["bold"] }
|
||||
"warning" = { fg = "warning", modifiers = ["bold"] }
|
||||
"info" = { fg = "info", modifiers = ["bold"] }
|
||||
|
|
|
@ -67,3 +67,8 @@
|
|||
"error" = "#D74E50"
|
||||
"info" = "#839A53"
|
||||
"hint" = "#A6B6CE"
|
||||
|
||||
"diagnostic.warning" = { underline = { color = "#D4A520", style = "curl" } }
|
||||
"diagnostic.error" = { underline = { color = "#D74E50", style = "curl" } }
|
||||
"diagnostic.info" = { underline = { color = "#839A53", style = "curl" } }
|
||||
"diagnostic.hint" = { underline = { color = "#A6B6CE", style = "curl" } }
|
||||
|
|
|
@ -41,7 +41,10 @@
|
|||
|
||||
"ui.cursorline.primary" = { bg = "sumiInk3"}
|
||||
|
||||
diagnostic = { modifiers = ["underlined"] }
|
||||
"diagnostic.error" = { underline = { color = "samuraiRed", style = "curl" } }
|
||||
"diagnostic.warning" = { underline = { color = "roninYellow", style = "curl" } }
|
||||
"diagnostic.info" = { underline = { color = "waveAqua1", style = "curl" } }
|
||||
"diagnostic.hint" = { underline = { color = "dragonBlue", style = "curl" } }
|
||||
|
||||
error = "samuraiRed"
|
||||
warning = "roninYellow"
|
||||
|
|
|
@ -54,7 +54,11 @@
|
|||
"ui.virtual.indent-guide" = { fg = "dark_grey2" }
|
||||
"ui.virtual.whitespace" = { fg = "grey" }
|
||||
|
||||
"diagnostic" = { modifiers = ["underlined"] }
|
||||
"diagnostic.error" = { underline = { color = "red", style = "curl" } }
|
||||
"diagnostic.warning" = { underline = { color = "orange", style = "curl" } }
|
||||
"diagnostic.info" = { underline = { color = "blue", style = "curl" } }
|
||||
"diagnostic.hint" = { underline = { color = "magenta", style = "curl" } }
|
||||
|
||||
"error" = { fg = "red" }
|
||||
"warning" = { fg = "orange" }
|
||||
"info" = { fg = "blue" }
|
||||
|
|
|
@ -93,7 +93,10 @@
|
|||
"ui.menu.selected" = { fg = "bright_white", bg = "gray03" }
|
||||
"ui.menu.scroll" = { fg = "gray04", bg = "gray01" }
|
||||
|
||||
diagnostic = { modifiers = ["underlined"] }
|
||||
"diagnostic.warning" = { underline = { color = "bright_yellow", style = "curl" } }
|
||||
"diagnostic.error" = { underline = { color = "bright_red", style = "curl" } }
|
||||
"diagnostic.info" = { underline = { color = "bright_blue", style = "curl" } }
|
||||
"diagnostic.hint" = { underline = { color = "bright_cyan", style = "curl" } }
|
||||
|
||||
warning = "bright_yellow"
|
||||
error = "bright_red"
|
||||
|
|
|
@ -85,7 +85,10 @@
|
|||
"info" = { fg = "#75beff" }
|
||||
"hint" = { fg = "#eeeeeb3" }
|
||||
|
||||
diagnostic = { modifiers = ["underlined"] }
|
||||
"diagnostic.warning" = { underline = { color = "#cca700", style = "curl" } }
|
||||
"diagnostic.error" = { underline = { color = "#f48771", style = "curl" } }
|
||||
"diagnostic.info" = { underline = { color = "#75beff", style = "curl" } }
|
||||
"diagnostic.hint" = { underline = { color = "#eeeeeb3", style = "curl" } }
|
||||
|
||||
[palette]
|
||||
type = "#A6E22E"
|
||||
|
|
|
@ -90,7 +90,10 @@
|
|||
"diff.minus" = "red"
|
||||
|
||||
# make diagnostic underlined, to distinguish with selection text.
|
||||
diagnostic = { modifiers = ["underlined"] }
|
||||
"diagnostic.warning" = { underline = { color = "orange", style = "curl" } }
|
||||
"diagnostic.error" = { underline = { color = "red", style = "curl" } }
|
||||
"diagnostic.info" = { underline = { color = "base8", style = "curl" } }
|
||||
"diagnostic.hint" = { underline = { color = "base8", style = "curl" } }
|
||||
|
||||
# markup highlight, no need for `markup.raw` and `markup.list`, make them to be default
|
||||
"markup.heading" = "green"
|
||||
|
|
|
@ -87,7 +87,10 @@
|
|||
"diff.minus" = "red"
|
||||
|
||||
# make diagnostic underlined, to distinguish with selection text.
|
||||
diagnostic = { modifiers = ["underlined"] }
|
||||
"diagnostic.warning" = { underline = { color = "orange", style = "curl" } }
|
||||
"diagnostic.error" = { underline = { color = "red", style = "curl" } }
|
||||
"diagnostic.info" = { underline = { color = "base8", style = "curl" } }
|
||||
"diagnostic.hint" = { underline = { color = "base8", style = "curl" } }
|
||||
|
||||
# markup highlight, no need for `markup.raw` and `markup.list`, make them to be default
|
||||
"markup.heading" = "green"
|
||||
|
|
|
@ -90,7 +90,10 @@
|
|||
"diff.minus" = "red"
|
||||
|
||||
# make diagnostic underlined, to distinguish with selection text.
|
||||
diagnostic = { modifiers = ["underlined"] }
|
||||
"diagnostic.warning" = { underline = { color = "orange", style = "curl" } }
|
||||
"diagnostic.error" = { underline = { color = "red", style = "curl" } }
|
||||
"diagnostic.info" = { underline = { color = "base8", style = "curl" } }
|
||||
"diagnostic.hint" = { underline = { color = "base8", style = "curl" } }
|
||||
|
||||
# markup highlight, no need for `markup.raw` and `markup.list`, make them to be default
|
||||
"markup.heading" = "green"
|
||||
|
|
|
@ -87,7 +87,10 @@
|
|||
"diff.minus" = "red"
|
||||
|
||||
# make diagnostic underlined, to distinguish with selection text.
|
||||
diagnostic = { modifiers = ["underlined"] }
|
||||
"diagnostic.warning" = { underline = { color = "orange", style = "curl" } }
|
||||
"diagnostic.error" = { underline = { color = "red", style = "curl" } }
|
||||
"diagnostic.info" = { underline = { color = "base8", style = "curl" } }
|
||||
"diagnostic.hint" = { underline = { color = "base8", style = "curl" } }
|
||||
|
||||
# markup highlight, no need for `markup.raw` and `markup.list`, make them to be default
|
||||
"markup.heading" = "green"
|
||||
|
|
|
@ -87,7 +87,10 @@
|
|||
"diff.minus" = "red"
|
||||
|
||||
# make diagnostic underlined, to distinguish with selection text.
|
||||
diagnostic = { modifiers = ["underlined"] }
|
||||
"diagnostic.warning" = { underline = { color = "orange", style = "curl" } }
|
||||
"diagnostic.error" = { underline = { color = "magenta", style = "curl" } } # maybe should be red?
|
||||
"diagnostic.info" = { underline = { color = "base8", style = "curl" } }
|
||||
"diagnostic.hint" = { underline = { color = "base8", style = "curl" } }
|
||||
|
||||
# markup highlight, no need for `markup.raw` and `markup.list`, make them to be default
|
||||
"markup.heading" = "green"
|
||||
|
|
|
@ -5,7 +5,11 @@
|
|||
'error' = { fg = 'red', modifiers = ['dim'] }
|
||||
'info' = { fg = 'blue', modifiers = ['dim'] }
|
||||
'hint' = { fg = 'paleblue', modifiers = ['dim'] }
|
||||
'diagnostic' = { modifiers = ['underlined'] }
|
||||
|
||||
"diagnostic.warning" = { underline = { color = "peach", style = "curl" } }
|
||||
"diagnostic.error" = { underline = { color = "red", style = "curl" } }
|
||||
"diagnostic.info" = { underline = { color = "blue", style = "curl" } }
|
||||
"diagnostic.hint" = { underline = { color = "paleblue", style = "curl" } }
|
||||
|
||||
# UI
|
||||
'ui.background' = { fg = 'foreground', bg = 'background' }
|
||||
|
|
|
@ -60,15 +60,15 @@
|
|||
|
||||
|
||||
# DIAGNOSTICS
|
||||
"warning" = { fg ="yellow", bg = "bg1" } # Diagnostics warning (gutter)
|
||||
"warning" = { fg = "yellow", bg = "bg1" } # Diagnostics warning (gutter)
|
||||
"error" = { fg = "red", bg = "bg1" } # Diagnostics error (gutter)
|
||||
"info" = { fg = "blue", bg = "bg1" } # Diagnostics info (gutter)
|
||||
"hint" = { fg = "green", bg = "bg1" } # Diagnostics hint (gutter)
|
||||
"diagnostic" = { modifiers = ["underlined"] } # Diagnostics fallback style (editing area)
|
||||
"diagnostic.error" = { fg = "red" } # Diagnostics error (editing area)
|
||||
"diagnostic.warning" = { fg = "yellow" } # Diagnostics warning (editing area)
|
||||
"diagnostic.info" = { fg = "blue" } # Diagnostics info (editing area)
|
||||
"diagnostic.hint" = { fg = "green" } # Diagnostics hint (editing area)
|
||||
|
||||
"diagnostic.warning" = { underline = { color = "yellow", style = "curl" } } # Diagnostics warning (editing area)
|
||||
"diagnostic.error" = { underline = { color = "red", style = "curl" } } # Diagnostics error (editing area)
|
||||
"diagnostic.info" = { underline = { color = "blue", style = "curl" } } # Diagnostics info (editing area)
|
||||
"diagnostic.hint" = { underline = { color = "green", style = "curl" } } # Diagnostics hint (editing area)
|
||||
|
||||
|
||||
# SYNTAX HIGHLIGHTING
|
||||
|
|
|
@ -10,7 +10,12 @@
|
|||
"info" = { fg = "mid-blue", bg = "mid-green" } # Code diagnostic info in gutter (LSP).
|
||||
# ? Difference between info and hint ?
|
||||
"hint" = { fg = "light-green", modifiers = ["bold"] } # Code diagnostics hint in gutter (LSP).
|
||||
"diagnostic" = { modifiers = ["underlined"] } # Code diagnostics in editing area (LSP).
|
||||
|
||||
# Code diagnostics in editing area (LSP).
|
||||
"diagnostic.warning" = { underline = { color = "yellow", style = "curl" } }
|
||||
"diagnostic.error" = { underline = { color = "red", style = "curl" } }
|
||||
"diagnostic.info" = { underline = { color = "mid-blue", style = "curl" } }
|
||||
"diagnostic.hint" = { underline = { color = "light-green", style = "curl" } }
|
||||
|
||||
# UI ==============================
|
||||
# For styling helix itself.
|
||||
|
|
|
@ -54,7 +54,11 @@
|
|||
"diff.plus" = "base0B"
|
||||
"diff.minus" = "base08"
|
||||
|
||||
"diagnostic" = { modifiers = ["underlined"] }
|
||||
"diagnostic.info" = { underline = { color = "base0D", style = "curl" } }
|
||||
"diagnostic.hint" = { underline = { color = "base03", style = "curl" } }
|
||||
"diagnostic.warning" = { underline = { color = "base09", style = "curl" } }
|
||||
"diagnostic.error" = { underline = { color = "base08", style = "curl" } }
|
||||
|
||||
"ui.gutter" = { bg = "base01" }
|
||||
"info" = "base0D"
|
||||
"hint" = "base03"
|
||||
|
|
|
@ -98,6 +98,12 @@
|
|||
"markup.link.text" = "nord8"
|
||||
"markup.raw" = "nord7"
|
||||
|
||||
# lsp diagnostics
|
||||
"diagnostic.error" = { underline = { color = "nord11", style = "curl" } }
|
||||
"diagnostic.warning" = { underline = { color = "nord13", style = "curl" } }
|
||||
"diagnostic.info" = { underline = { color = "nord8", style = "curl" } }
|
||||
"diagnostic.hint" = { underline = { color = "nord8", style = "curl" } }
|
||||
|
||||
# vcs
|
||||
"diff.plus" = "nord14"
|
||||
"diff.delta" = "nord12"
|
||||
|
|
|
@ -26,9 +26,10 @@
|
|||
"ui.statusline.select" = { fg = "nord0", bg = "nord15" }
|
||||
|
||||
|
||||
"diagnostic.error" = {fg="nord11", modifiers=["bold"]}
|
||||
"diagnostic.warning" = {bg="nord13", modifiers=["bold"]}
|
||||
"diagnostic.hint" = {fg="nord13", modifiers=["bold"]}
|
||||
"diagnostic.error" = { underline = { color = "nord11", style = "curl" } }
|
||||
"diagnostic.warning" = { underline = { color = "nord13", style = "curl" } }
|
||||
"diagnostic.info" = { underline = { color = "nord13", style = "curl" } }
|
||||
"diagnostic.hint" = { underline = { color = "nord13", style = "curl" } }
|
||||
|
||||
"constant.numeric" = {fg="nord15"}
|
||||
"constant.builtin" = {fg="nord15"}
|
||||
|
|
|
@ -41,7 +41,11 @@
|
|||
"diff.delta" = "gold"
|
||||
"diff.minus" = "red"
|
||||
|
||||
diagnostic = { modifiers = ["underlined"] }
|
||||
"diagnostic.info".underline = { color = "blue", style = "curl" }
|
||||
"diagnostic.hint".underline = { color = "green", style = "curl" }
|
||||
"diagnostic.warning".underline = { color = "yellow", style = "curl" }
|
||||
"diagnostic.error".underline = { color = "red", style = "curl" }
|
||||
|
||||
"info" = { fg = "blue", modifiers = ["bold"] }
|
||||
"hint" = { fg = "green", modifiers = ["bold"] }
|
||||
"warning" = { fg = "yellow", modifiers = ["bold"] }
|
||||
|
|
|
@ -63,7 +63,11 @@
|
|||
"diff.delta" = "gold"
|
||||
"diff.minus" = "red"
|
||||
|
||||
"diagnostic" = { modifiers = ["underlined"] }
|
||||
"diagnostic.info".underline = { color = "blue", style = "curl" }
|
||||
"diagnostic.hint".underline = { color = "green", style = "curl" }
|
||||
"diagnostic.warning".underline = { color = "yellow", style = "curl" }
|
||||
"diagnostic.error".underline = { color = "red", style = "curl" }
|
||||
|
||||
"info" = { fg = "blue", modifiers = ["bold"] }
|
||||
"hint" = { fg = "green", modifiers = ["bold"] }
|
||||
"warning" = { fg = "yellow", modifiers = ["bold"] }
|
||||
|
|
|
@ -73,7 +73,11 @@
|
|||
"warning" = "bright4"
|
||||
"error" = "regular1"
|
||||
"info" = "bright4"
|
||||
diagnostic = { modifiers = ["bold", "underlined"]}
|
||||
|
||||
"diagnostic.warning".underline = { color = "bright4", style = "curl" }
|
||||
"diagnostic.error".underline = { color = "regular1", style = "curl" }
|
||||
"diagnostic.info".underline = { color = "bright4", style = "curl" }
|
||||
"diagnostic.hint".underline = { color = "bright4", style = "curl" }
|
||||
|
||||
|
||||
[palette]
|
||||
|
|
|
@ -72,7 +72,11 @@
|
|||
"warning" = "bright4"
|
||||
"error" = "regular1"
|
||||
"info" = "#FFAF00"
|
||||
diagnostic = { modifiers = ["bold", "underlined"]}
|
||||
|
||||
"diagnostic.warning".underline = { color = "bright4", style = "curl" }
|
||||
"diagnostic.error".underline = { color = "regular1", style = "curl" }
|
||||
"diagnostic.info".underline = { color = "#FFAF00", style = "curl" }
|
||||
"diagnostic.hint".underline = { color = "#FFAF00", style = "curl" }
|
||||
|
||||
|
||||
[palette]
|
||||
|
|
|
@ -43,7 +43,10 @@ info = "sky"
|
|||
warning = "yellow"
|
||||
error = "red"
|
||||
|
||||
diagnostic = { modifiers = ["underlined"] }
|
||||
"diagnostic.hint".underline = { color = "sky-", style = "curl" }
|
||||
"diagnostic.info".underline = { color = "sky", style = "curl" }
|
||||
"diagnostic.warning".underline = { color = "yellow", style = "curl" }
|
||||
"diagnostic.error".underline = { color = "red", style = "curl" }
|
||||
|
||||
"ui.background" = { bg = "shade" }
|
||||
"ui.background.separator" = "sky"
|
||||
|
|
|
@ -8,7 +8,10 @@ info = { fg = 'yellowH', bg = 'brownD' }
|
|||
hint = { fg = 'brownD', bg = 'yellowH', modifiers = ['bold'] }
|
||||
warning = { fg = 'brownD', bg = 'orangeW', modifiers = ['bold'] }
|
||||
error = { fg = 'brownD', bg = 'redE', modifiers = ['bold'] }
|
||||
diagnostic = { fg = 'greyT', bg = 'redD' }
|
||||
"diagnostic.info".underline = { color = "yellowH", style = "curl" }
|
||||
"diagnostic.hint".underline = { color = "yellowH", style = "curl" }
|
||||
"diagnostic.warning".underline = { color = "orangeW", style = "curl" }
|
||||
"diagnostic.error".underline = { color = "redE", style = "curl" }
|
||||
'ui.background' = { bg = 'brownN' }
|
||||
'ui.window' = { bg = 'brownH', fg = "brownD" }
|
||||
'ui.gutter' = { bg = 'brownH' }
|
||||
|
|
|
@ -100,7 +100,10 @@
|
|||
"ui.menu.selected" = { fg = "fg", bg = "gray03" }
|
||||
"ui.menu.scroll" = { fg = "white", bg = "gray01" }
|
||||
|
||||
diagnostic = { modifiers = ["underlined"] }
|
||||
"diagnostic.warning".underline = { color = "bright_yellow", style = "curl" }
|
||||
"diagnostic.error".underline = { color = "bright_red", style = "curl" }
|
||||
"diagnostic.info".underline = { color = "bright_blue", style = "curl" }
|
||||
"diagnostic.hint".underline = { color = "bright_cyan", style = "curl" }
|
||||
|
||||
warning = "bright_yellow"
|
||||
error = "bright_red"
|
||||
|
|
|
@ -52,7 +52,6 @@
|
|||
"warning" = "gold"
|
||||
"error" = "love"
|
||||
|
||||
"diagnostic" = { modifiers = ["underlined"] }
|
||||
"diagnostic.error" = { underline = { style = "curl", color = "love" } }
|
||||
"diagnostic.warning" = { underline = { style = "curl", color = "gold" } }
|
||||
"diagnostic.info" = { underline = { style = "curl", color = "foam" } }
|
||||
|
|
|
@ -45,9 +45,13 @@
|
|||
"info" = "gold"
|
||||
"hint" = "gold"
|
||||
"debug" = "rose"
|
||||
"diagnostic" = "rose"
|
||||
"error" = "love"
|
||||
|
||||
"diagnostic.error" = { underline = { style = "curl", color = "love" } }
|
||||
"diagnostic.warning" = { underline = { style = "curl", color = "gold" } }
|
||||
"diagnostic.info" = { underline = { style = "curl", color = "foam" } }
|
||||
"diagnostic.hint" = { underline = { style = "curl", color = "iris" } }
|
||||
|
||||
"markup.heading.marker" = "subtle"
|
||||
"markup.heading.1" = { fg = "love", modifiers = ["bold"] }
|
||||
"markup.heading.2" = { fg = "gold", modifiers = ["bold"] }
|
||||
|
|
|
@ -51,9 +51,13 @@
|
|||
"info" = "gold"
|
||||
"hint" = "gold"
|
||||
"debug" = "rose"
|
||||
"diagnostic" = "rose"
|
||||
"error" = "love"
|
||||
|
||||
"diagnostic.error" = { underline = { style = "curl", color = "love" } }
|
||||
"diagnostic.warning" = { underline = { style = "curl", color = "gold" } }
|
||||
"diagnostic.info" = { underline = { style = "curl", color = "foam" } }
|
||||
"diagnostic.hint" = { underline = { style = "curl", color = "iris" } }
|
||||
|
||||
"markup.heading.marker" = "subtle"
|
||||
"markup.heading.1" = { fg = "love", modifiers = ["bold"] }
|
||||
"markup.heading.2" = { fg = "gold", modifiers = ["bold"] }
|
||||
|
|
|
@ -57,7 +57,11 @@
|
|||
"info" = "aqua"
|
||||
"warning" = "yellow"
|
||||
"error" = "nasty-red"
|
||||
"diagnostic" = { fg = "nasty-red", modifiers = ["underlined"] }
|
||||
|
||||
"diagnostic.hint" = { underline = { style = "curl", color = "blue" } }
|
||||
"diagnostic.info" = { underline = { style = "curl", color = "aqua" } }
|
||||
"diagnostic.warning" = { underline = { style = "curl", color = "yellow" } }
|
||||
"diagnostic.error" = { underline = { style = "curl", color = "nasty-red" } }
|
||||
|
||||
"diff.plus" = { fg = "green" }
|
||||
"diff.delta" = { fg = "orange" }
|
||||
|
|
|
@ -57,7 +57,11 @@
|
|||
"info" = "aqua"
|
||||
"warning" = "yellow"
|
||||
"error" = "nasty-red"
|
||||
"diagnostic" = { fg = "nasty-red", modifiers = ["underlined"] }
|
||||
|
||||
"diagnostic.hint" = { underline = { style = "curl", color = "blue" } }
|
||||
"diagnostic.info" = { underline = { style = "curl", color = "aqua" } }
|
||||
"diagnostic.warning" = { underline = { style = "curl", color = "yellow" } }
|
||||
"diagnostic.error" = { underline = { style = "curl", color = "nasty-red" } }
|
||||
|
||||
"diff.plus" = { fg = "bg_green" }
|
||||
"diff.delta" = { fg = "bg_blue" }
|
||||
|
|
|
@ -101,7 +101,11 @@
|
|||
"error" = { fg = "red", modifiers= ["bold", "underlined"] }
|
||||
"info" = { fg = "blue", modifiers= ["bold", "underlined"] }
|
||||
"hint" = { fg = "base01", modifiers= ["bold", "underlined"] }
|
||||
"diagnostic" = { modifiers = ["underlined"] }
|
||||
|
||||
"diagnostic.warning" = { underline = { style = "curl", color = "orange" } }
|
||||
"diagnostic.error" = { underline = { style = "curl", color = "red" } }
|
||||
"diagnostic.info" = { underline = { style = "curl", color = "blue" } }
|
||||
"diagnostic.hint" = { underline = { style = "curl", color = "base01" } }
|
||||
|
||||
[palette]
|
||||
# 深色 越来越深
|
||||
|
|
|
@ -118,7 +118,12 @@
|
|||
"error" = { fg = "red", modifiers= ["bold", "underlined"] }
|
||||
"info" = { fg = "blue", modifiers= ["bold", "underlined"] }
|
||||
"hint" = { fg = "base01", modifiers= ["bold", "underlined"] }
|
||||
"diagnostic" = { modifiers = ["underlined"] }
|
||||
|
||||
"diagnostic.warning" = { underline = { style = "curl", color = "orange" } }
|
||||
"diagnostic.error" = { underline = { style = "curl", color = "red" } }
|
||||
"diagnostic.info" = { underline = { style = "curl", color = "blue" } }
|
||||
"diagnostic.hint" = { underline = { style = "curl", color = "base01" } }
|
||||
|
||||
|
||||
[palette]
|
||||
red = '#dc322f'
|
||||
|
|
|
@ -75,7 +75,11 @@ info = { fg = 'green', bg = 'bg2' }
|
|||
hint = { fg = 'blue', bg = 'bg2', modifiers = ['bold'] }
|
||||
warning = { fg = 'yellow', bg = 'bg2', modifiers = ['bold'] }
|
||||
error = { fg = 'red', bg = 'bg2', modifiers = ['bold'] }
|
||||
diagnostic = { modifiers = ['underlined'] }
|
||||
|
||||
"diagnostic.info" = { underline = { style = "curl", color = "green" } }
|
||||
"diagnostic.hint" = { underline = { style = "curl", color = "blue" } }
|
||||
"diagnostic.warning" = { underline = { style = "curl", color = "yellow" } }
|
||||
"diagnostic.error" = { underline = { style = "curl", color = "red" } }
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -72,7 +72,10 @@
|
|||
"ui.virtual" = "base-dim"
|
||||
"ui.virtual.ruler" = { bg = "bg1" }
|
||||
|
||||
"diagnostic" = { modifiers = ["underlined"] }
|
||||
"diagnostic.warning" = { underline = { style = "curl", color = "meta" } }
|
||||
"diagnostic.error" = { underline = { style = "curl", color = "#e0211d" } }
|
||||
"diagnostic.info" = { underline = { style = "curl", color = "theme_yellow" } }
|
||||
"diagnostic.hint" = { underline = { style = "curl", color = "bg2" } }
|
||||
|
||||
[palette]
|
||||
base = "#655370"
|
||||
|
|
|
@ -54,7 +54,10 @@
|
|||
"warning" = { fg = "yellow" }
|
||||
"info" = { fg = "blue" }
|
||||
"hint" = { fg = "teal" }
|
||||
"diagnostic" = { modifiers = ["underlined"] }
|
||||
"diagnostic.error" = { underline = { style = "curl", color = "red" } }
|
||||
"diagnostic.warning" = { underline = { style = "curl", color = "yellow" } }
|
||||
"diagnostic.info" = { underline = { style = "curl", color = "blue" } }
|
||||
"diagnostic.hint" = { underline = { style = "curl", color = "teal" } }
|
||||
"special" = { fg = "orange" }
|
||||
|
||||
"markup.heading" = { fg = "cyan", modifiers = ["bold"] }
|
||||
|
|
|
@ -70,7 +70,10 @@
|
|||
"info" = "aqua"
|
||||
"warning" = "yellow"
|
||||
"error" = "red"
|
||||
"diagnostic" = { modifiers = ["underlined"] }
|
||||
"diagnostic.hint" = { underline = { style = "curl", color = "blue" } }
|
||||
"diagnostic.info" = { underline = { style = "curl", color = "aqua" } }
|
||||
"diagnostic.warning" = { underline = { style = "curl", color = "yellow" } }
|
||||
"diagnostic.error" = { underline = { style = "curl", color = "red" } }
|
||||
|
||||
[palette]
|
||||
bg0 = "#282828"
|
||||
|
|
Loading…
Reference in a new issue