Skip to content

Instantly share code, notes, and snippets.

@Nequo
Created March 13, 2023 17:29
Show Gist options
  • Save Nequo/6b2ba641b9df1156e8af83d214516944 to your computer and use it in GitHub Desktop.
Save Nequo/6b2ba641b9df1156e8af83d214516944 to your computer and use it in GitHub Desktop.
helix carbon theme
"ui.background" = { bg = "base00" }
"ui.virtual.whitespace" = "base03"
"ui.menu" = { fg = "base05", bg = "base01" }
"ui.menu.selected" = { fg = "base01", bg = "base04" }
"ui.linenr" = { fg = "base03", bg = "base01" }
"ui.popup" = { bg = "base01" }
"ui.window" = { bg = "base01" }
"ui.linenr.selected" = { fg = "base04", bg = "base01", modifiers = ["bold"] }
"ui.selection" = { bg = "base02" }
"comment" = { fg = "cyan", modifiers = ["italic"] }
"ui.statusline" = { fg = "base04", bg = "base01" }
"ui.cursor" = { fg = "base04", modifiers = ["reversed"] }
"ui.cursor.primary" = { fg = "base05", modifiers = ["reversed"] }
"ui.text" = "base05"
"operator" = "base05"
"ui.text.focus" = "base05"
"variable" = "base04"
"constant.numeric" = "yellow"
"constant" = "orange"
"attribute" = "base04"
"type" = "pink"
"ui.cursor.match" = { fg = "base00", bg = "yellow", modifiers = ["underlined"] }
"string" = "green"
"variable.other.member" = "green"
"constant.character.escape" = "teal"
"function" = "orange"
"function.macro" = "purple"
"constructor" = "blue"
"special" = "teal"
"keyword" = "blue"
"label" = "purple"
"namespace" = "purple"
"ui.help" = { fg = "base06", bg = "base01" }
"markup.heading" = "blue"
"markup.list" = "red"
"markup.bold" = { fg = "yellow", modifiers = ["bold"] }
"markup.italic" = { fg = "purple", modifiers = ["italic"] }
"markup.strikethrough" = { modifiers = ["crossed_out"] }
"markup.link.url" = { fg = "orange", modifiers = ["underlined"] }
"markup.link.text" = "red"
"markup.quote" = "teal"
"markup.raw" = "green"
"diff.plus" = "green"
"diff.delta" = "orange"
"diff.minus" = "red"
"diagnostic" = { modifiers = ["underlined"] }
"ui.gutter" = { bg = "base01" }
"info" = "blue"
"hint" = "base03"
"debug" = "base03"
"warning" = "orange"
"error" = "red"
"ui.bufferline" = { fg = "base04", bg = "base00" }
"ui.bufferline.active" = { fg = "base06", bg = "base01" }
[palette]
base00 = "#161616"
base01 = "#262626"
base02 = "#393939"
base03 = "#525252"
base04 = "#dde1e6"
base05 = "#f2f4f8"
base06 = "#f8f8f8"
base07 = "#ffffff"
red = "#da1e28"
orange = "#fd971f"
yellow = "#f1c21b"
green = "#42be65"
cyan = "#08bdba"
teal = "#3ddbd9"
blue = "#33b1ff"
purple = "#be95ff"
pink = "#ff7eb6"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment