You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
helix/runtime/themes/voxed.toml

111 lines
3.6 KiB
TOML

11 months ago
attribute = "buff"
keyword = "sglow"
"keyword.directive" = "bgray" # -- preprocessor comments (#if in C)
namespace = "lilac"
punctuation = "white"
11 months ago
"punctuation.delimiter" = "lavender"
operator = "greenish"
special = "honey"
"variable.other.member" = "bsienna"
variable = "tan"
# variable = "almond" # TODO: metavariables only
# "variable.parameter" = { fg = "lavender", modifiers = ["underlined"] }
"variable.parameter" = { fg = "white" }
"variable.builtin" = "white"
type = "light-blue"
"type.builtin" = "functionish" # TODO: distinguish?
11 months ago
constructor = "lilac"
function = "functionish"
"function.macro" = "lilac"
"function.builtin" = "typeish"
tag = "almond"
comment = "bgray"
constant = "tan"
"constant.builtin" = "#D38588"
#string = "#B8BB26" or gruvgreen -- Green if you prefer it for strings
string = "redish"
"constant.numeric" = "functionish"
11 months ago
"constant.character.escape" = "honey"
# used for lifetimes
label = "honey"
"markup.heading" = "functionish"
"markup.list" = "status-two"
"markup.quote" = "tan"
"markup.bold" = { fg = "sglow", modifiers = ["bold"] }
"markup.italic" = { fg = "sglow", modifiers = ["italic"] }
11 months ago
"markup.strikethrough" = { modifiers = ["crossed_out"] }
"markup.link.url" = { fg = "sglow", modifiers = ["underlined"] }
"markup.link.text" = "greenish"
"markup.raw" = "light-grey"
11 months ago
"diff.plus" = "#7DDF64"
"diff.minus" = "#F22B29"
"diff.delta" = "#6f44f0"
# TODO: diferentiate doc comment
# concat (ERROR) @error.syntax and "MISSING ;" selectors for errors
# NOTE: bg is empty so it is transparent on the terminal
# if you want the bg to not be transparent rename give bg
# the same value as fg and remove fg :)
"ui.background" = { fg = "#25262B", bg = "#25262B" }
11 months ago
"ui.background.separator" = { fg = "sglow" }
"ui.linenr" = { fg = "light-grey", modifiers = ["italic"] }
"ui.linenr.selected" = { fg = "bpink", modifiers = ["bold"] }
"ui.statusline" = { fg = "status-two", bg = "light-grey", modifiers = ["bold", "dim"] }
"ui.statusline.inactive" = { fg = "black", bg = "bgray-two" }
"ui.popup" = { fg = "bgray", bg = "" }
"ui.window" = { fg = "white" }
"ui.help" = { bg = "#3f4047", fg = "light-grey" }
"ui.text" = { fg = "lavender" }
"ui.text.focus" = { fg = "maize", bg = "bgray" }
"ui.text.inactive" = "sirocco"
"ui.virtual" = { fg = "comet" }
"ui.virtual.indent-guide" = { fg = "comet" }
"ui.selection" = { bg = "maize" }
"ui.selection.primary" = { fg = "white", bg = "bgray" }
# 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.cursorline.primary" = { bg = "bossanova" }
"ui.highlight" = { bg = "bossanova" }
"ui.highlight.frameline" = { bg = "#634450" }
"ui.debug" = { fg = "#634450" }
"ui.debug.breakpoint" = { fg = "apricot" }
"ui.menu" = { fg = "white", bg = "#23232d" }
"ui.menu.selected" = { fg = "white", bg = "bgray" }
"ui.menu.scroll" = { fg = "lavender", bg = "comet" }
"diagnostic.hint" = { underline = { color = "silver", style = "curl" } }
"diagnostic.info" = { underline = { color = "delta", style = "curl" } }
"diagnostic.warning" = { underline = { color = "lightning", style = "curl" } }
"diagnostic.error" = { underline = { color = "apricot", style = "curl" } }
warning = "bpink"
error = "bsienna"
info = "maize"
hint = "tan"
[palette]
tan = "#DAB785"
typeish = "#AAAAA5"
greenish = "#458588"
functionish = "#b784a3"
bsienna = "#D5896F"
bpink = "#FF5964"
maize = "#FFE74C"
bgray = "#8c8681"
sglow = "#FFCF56"
status = "#15616D"
status-two = "#3879A1"
redish = "#E76B74"
light-grey = "#b7afa8"
bgray-two = "#706b68"
gruvgreen = "#B8BB26"