Fix error color, add tty theme

imgbot
NNB 2 years ago committed by Blaž Hrastnik
parent a9a9d498e8
commit 3080be8268

@ -38,4 +38,4 @@
"hint" = "light-gray"
"debug" = "light-gray"
"diagnostic" = "light-gray"
"error" = "light-magenta"
"error" = "light-red"

@ -39,7 +39,7 @@
"hint" = "base03"
"debug" = "base03"
"diagnostic" = "base03"
"error" = "base0E"
"error" = "base08"
[palette]
base00 = "#181818" # Default Background

@ -39,7 +39,7 @@
"hint" = "base03"
"debug" = "base03"
"diagnostic" = "base03"
"error" = "base0E"
"error" = "base08"
[palette]
base00 = "#f8f8f8" # Default Background

@ -0,0 +1,41 @@
# Author: NNB <nnbnh@protonmail.com>
"ui.menu" = "black"
"ui.menu.selected" = { fg = "white", bg = "black" }
"ui.linenr" = { fg = "gray", bg = "black" }
"ui.popup" = { bg = "black" }
"ui.window" = { bg = "black" }
"ui.linenr.selected" = { fg = "white", bg = "black", modifiers = ["bold"] }
"ui.selection" = { fg = "black", bg = "blue" }
"ui.selection.primary" = { fg = "white", bg = "blue" }
"comment" = { fg = "gray" }
"ui.statusline" = { fg = "white", bg = "black" }
"ui.help" = { fg = "white", bg = "black" }
"ui.cursor" = { fg = "white", modifiers = ["reversed"] } #FIXME
"ui.text" = "white" #FIXME
"operator" = "white" #FIXME
"ui.text.focus" = "white" #FIXME
"variable" = "red"
"constant.numeric" = "yellow"
"constant" = "yellow"
"attributes" = "yellow"
"type" = "yellow"
"ui.cursor.match" = { fg = "yellow", modifiers = ["underlined"] }
"string" = "green"
"variable.other.member" = "green"
"constant.character.escape" = "cyan"
"function" = "blue"
"constructor" = "blue"
"special" = "blue"
"keyword" = "magenta"
"label" = "magenta"
"namespace" = "magenta"
"ui.popup" = { bg = "black" }
"ui.window" = { bg = "base00" }
"ui.help" = { fg = "white", bg = "black" }
"info" = "gray"
"hint" = "gray"
"debug" = "gray"
"diagnostic" = "gray"
"error" = "red"
Loading…
Cancel
Save