Skip to content

Commit

Permalink
theme: add horizon-dark
Browse files Browse the repository at this point in the history
  • Loading branch information
vesdev committed Dec 5, 2023
1 parent c3cb179 commit de223db
Showing 1 changed file with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions runtime/themes/horizon-dark.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
# Syntax
string = "orange"
constant = "purple"
"constant.numeric" = "orange"
"constant.builtin" = "orange"
variable = "red"
comment = "green"
special = "purple"
"punctuation.bracket" = "purple"
keyword = "purple"
function = "blue"
label = "orange"
type = "orange"
namespace = "orange"

# UI
"ui.background" = { bg = "bg", fg = "gray" }
"ui.background.separator" = "blue-gray"
"ui.text" = "white"
"ui.text.focus" = "green"
"ui.text.inactive" = "selection"
"ui.text.info" = "white"
"ui.cursor" = { modifiers = ["reversed"] }
"ui.cursor.primary" = { modifiers = ["reversed"] }
"ui.cursor.match" = { bg = "selection" }
"ui.gutter" = "gray"
"ui.gutter.selected" = "orange"
"ui.selection" = { bg = "selection" }
"ui.virtual.indent-guide" = { fg = "gray"}
"ui.statusline" = { bg = "dark-bg", fg = "blue-gray" }
"ui.popup" = { bg = "bg", fg = "gray" }
"ui.help" = { bg = "bg", fg = "white" }
"ui.menu" = { bg = "bg", fg = "white" }
"ui.menu.selected" = { bg = "bg", fg = "orange" }
"ui.window" = "selection"
"ui.bufferline" = { bg = "dark-bg", fg = "blue-gray" }
"ui.bufferline.active" = { bg = "dark-bg", fg = "orange" }

"diagnostic" = { underline = { style = "curl" } }
"diagnostic.hint" = { underline = { color = "green", style = "curl" } }
"diagnostic.info" = { underline = { color = "blue", style = "curl" } }
"diagnostics.error" = { underline = { color = "red", style = "curl"} }
"diagnostics.warning" = { underline = { color = "orange", style = "curl"} }

warning = { fg = "orange", modifiers = ["bold"] }
error = { fg = "red", modifiers = ["bold"] }
info = { fg = "blue", modifiers = ["bold"] }
hint = { fg = "green", modifiers = ["bold"] }

[palette]
white = "#D5D8DA"
gray = "#2E303E"
blue-gray = "#6C6F93"
bg = "#1C1E26"
dark-bg = "#16161C"
pink = "#EE64AE"
selection = "#353747"
green = "#27D796"
orange = "#FAB795"
purple = "#B877DB"
red = "#E95678"
blue = "#25B2BC"

0 comments on commit de223db

Please sign in to comment.