Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added voxed theme #9164

Merged
merged 18 commits into from
Jan 9, 2024
Merged
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
110 changes: 110 additions & 0 deletions runtime/themes/voxed.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
attribute = "buff"
the-mikedavis marked this conversation as resolved.
Show resolved Hide resolved
keyword = "sglow"
"keyword.directive" = "bgrey" # -- preprocessor comments (#if in C)
namespace = "blue"
punctuation = "white"
"punctuation.delimiter" = "functionish"
operator = "greenish"
special = "maize"
"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?
constructor = "typeish"
function = "functionish"
"function.macro" = "blue"
"function.builtin" = "typeish"
tag = "functionish"
comment = "bgrey"
constant = "tan"
"constant.builtin" = "#D38588"
#string = "#B8BB26" or gruvgreen -- Green if you prefer it for strings
string = "redish"
"constant.numeric" = "functionish"
"constant.character.escape" = "cyan"
# used for lifetimes
label = "yellow"

"markup.heading" = "functionish"
"markup.list" = "status-two"
"markup.quote" = "tan"
"markup.bold" = { fg = "sglow", modifiers = ["bold"] }
"markup.italic" = { fg = "sglow", modifiers = ["italic"] }
"markup.strikethrough" = { modifiers = ["crossed_out"] }
"markup.link.url" = { fg = "sglow", modifiers = ["underlined"] }
"markup.link.text" = "greenish"
"markup.raw" = "light-grey"

"diff.plus" = "#7DDF64"
"diff.minus" = "#F22B29"
"diff.delta" = "#6f44f0"

# TODO: diferentiate doc comment
# concat (ERROR) @error.syntax and "MISSING ;" selectors for errors
the-mikedavis marked this conversation as resolved.
Show resolved Hide resolved

# 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" = { bg = "#25262B" }
"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 = "bgrey-two" }
"ui.popup" = { fg = "bgrey", bg = "" }
the-mikedavis marked this conversation as resolved.
Show resolved Hide resolved
"ui.window" = { fg = "white" }
"ui.help" = { bg = "#3f4047", fg = "light-grey" }

"ui.text" = { fg = "white" }
"ui.text.focus" = { fg = "maize", bg = "bgrey" }
"ui.text.inactive" = "bgrey"
"ui.virtual" = { fg = "blue" }
"ui.virtual.ruler" = { bg = "light-grey" }
"ui.virtual.indent-guide" = { fg = "bpink" }

"ui.selection" = { bg = "maize" }
"ui.selection.primary" = { fg = "white", bg = "bgrey" }
# TODO: namespace ui.cursor as ui.selection.cursor?
"ui.cursor.select" = { bg = "white" }
"ui.cursor.insert" = { bg = "white" }
"ui.cursor.match" = { fg = "#212121", bg = "#6C6999" }
"ui.cursor" = { modifiers = ["reversed"] }
"ui.cursorline.primary" = { bg = "white" }
"ui.highlight" = { bg = "white" }
"ui.highlight.frameline" = { bg = "#634450" }
"ui.debug" = { fg = "#634450" }
"ui.debug.breakpoint" = { fg = "bpink" }
"ui.menu" = { fg = "white", bg = "#23232d" }
"ui.menu.selected" = { fg = "white", bg = "bgrey" }
"ui.menu.scroll" = { fg = "white", bg = "white" }

"diagnostic.hint" = { underline = { color = "maize", style = "curl" } }
"diagnostic.info" = { underline = { color = "sglow", style = "curl" } }
"diagnostic.warning" = { underline = { color = "redish", style = "curl" } }
"diagnostic.error" = { underline = { color = "bpink", style = "curl" } }

warning = "bpink"
error = "bsienna"
info = "maize"
hint = "tan"

[palette]
the-mikedavis marked this conversation as resolved.
Show resolved Hide resolved
tan = "#DAB785"
typeish = "#AAAAA5"
greenish = "#458588"
functionish = "#b784a3"
bsienna = "#D5896F"
bpink = "#FF5964"
maize = "#FFE74C"
bgrey = "#8c8681"
sglow = "#FFCF56"
status = "#15616D"
status-two = "#3879A1"
redish = "#E76B74"
light-grey = "#b7afa8"
bgrey-two = "#706b68"
gruvgreen = "#B8BB26"
Loading