Add Paramount Light to Helix themes
This commit is contained in:
parent
bb6363d0e2
commit
b518030c86
|
@ -1,5 +1,5 @@
|
||||||
# Port of https://github.com/owickstrom/vim-colors-paramount for Helix
|
# Author : Agatha V. Lovelace <agatha@technogothic.net>
|
||||||
# Dark theme only (with some tweaks)
|
# Based on Paramount Dark https://github.com/owickstrom/vim-colors-paramount
|
||||||
|
|
||||||
inherits = "hex_lavender"
|
inherits = "hex_lavender"
|
||||||
|
|
|
@ -0,0 +1,75 @@
|
||||||
|
# Author : Agatha V. Lovelace <agatha@technogothic.net>
|
||||||
|
# Based on Paramount Light https://github.com/owickstrom/vim-colors-paramount
|
||||||
|
|
||||||
|
inherits = "spacebones_light"
|
||||||
|
|
||||||
|
"ui.background" = { bg = "actual_white" }
|
||||||
|
"ui.gutter" = { bg = "actual_white" }
|
||||||
|
"ui.menu.selected" = { fg = "light_black", bg = "dark_purple" }
|
||||||
|
"comment" = { fg = "dark_gray", modifiers = ["italic"] }
|
||||||
|
"constant" = "dark_purple"
|
||||||
|
"string" = "dark_purple"
|
||||||
|
"variable" = "light_black"
|
||||||
|
"variable.parameter" = "light_black"
|
||||||
|
"function" = "light_black"
|
||||||
|
"keyword" = "medium_gray"
|
||||||
|
"keyword.function" = "light_black"
|
||||||
|
"keyword.control" = "medium_gray"
|
||||||
|
"keyword.control.import" = "medium_gray"
|
||||||
|
"operator" = { fg = "light_black", modifiers = ["bold"] }
|
||||||
|
"function.special" = "medium_gray"
|
||||||
|
"function.macro" = "medium_gray"
|
||||||
|
"type" = "light_black"
|
||||||
|
"type.builtin" = "light_black"
|
||||||
|
"tag" = { fg = "medium_gray", modifiers = ["italic"] }
|
||||||
|
"punctuation" = { fg = "medium_gray" }
|
||||||
|
"ui.linenr" = "medium_gray"
|
||||||
|
"ui.linenr.selected" = { fg = "dark_purple" }
|
||||||
|
"string.special.url" = { fg = "light_black", underline = { color = "light_black", style = "line" }, modifiers = ["underlined"] }
|
||||||
|
"markup.link" = { fg = "light_black", underline = { color = "light_black", style = "line" }, modifiers = ["underlined"] }
|
||||||
|
"diagnostic.error" = { underline = { color = "dark_red", style = "curl" } }
|
||||||
|
"error" = "dark_red"
|
||||||
|
"diagnostic.hint" = { underline = { color = "light_black", style = "curl" } }
|
||||||
|
"hint" = "light_black"
|
||||||
|
"ui.selection" = { fg = "light_black", bg = "dark_purple" }
|
||||||
|
"ui.selection.primary" = { fg = "light_black", bg = "dark_purple" }
|
||||||
|
"warning" = "orange"
|
||||||
|
"diagnostic.warning" = { underline = { color = "orange", style = "curl" } }
|
||||||
|
"diff.plus" = "dark_green"
|
||||||
|
"diff.minus" = "dark_red"
|
||||||
|
"diff.delta" = "dark_yellow"
|
||||||
|
"ui.cursor" = { bg = "light_black" }
|
||||||
|
"ui.cursor.insert" = { bg = "dark_purple" }
|
||||||
|
"ui.cursor.select" = { bg = "dark_purple" }
|
||||||
|
"ui.cursor.match" = { fg = "light_black", bg = "medium_gray" }
|
||||||
|
"namespace" = "medium_gray"
|
||||||
|
"special" = "medium_gray"
|
||||||
|
|
||||||
|
|
||||||
|
[palette]
|
||||||
|
medium_gray = "#767676"
|
||||||
|
white = "#F1F1F1"
|
||||||
|
actual_white = "#FFFFFF"
|
||||||
|
subtle_black = "#303030"
|
||||||
|
light_black = "#262626"
|
||||||
|
lighter_black = "#4E4E4E"
|
||||||
|
light_gray = "#A8A8A8"
|
||||||
|
lighter_gray = "#C6C6C6"
|
||||||
|
lightest_gray = "#EEEEEE"
|
||||||
|
pink = "#fb007a"
|
||||||
|
dark_red = "#C30771"
|
||||||
|
light_red = "#E32791"
|
||||||
|
orange = "#D75F5F"
|
||||||
|
darker_blue = "#005F87"
|
||||||
|
dark_blue = "#008EC4"
|
||||||
|
blue = "#20BBFC"
|
||||||
|
light_blue = "#b6d6fd"
|
||||||
|
dark_cyan = "#20A5BA"
|
||||||
|
light_cyan = "#4FB8CC"
|
||||||
|
dark_green = "#10A778"
|
||||||
|
light_green = "#5FD7A7"
|
||||||
|
dark_purple = "#af5fd7"
|
||||||
|
light_purple = "#a790d5"
|
||||||
|
yellow = "#F3E430"
|
||||||
|
light_yellow = "#ffff87"
|
||||||
|
dark_yellow = "#A89C14"
|
Loading…
Reference in New Issue