Skip to content

Commit abd9a0e

Browse files
kamek-pfjdrst
authored andcommitted
theme: Add Varua color scheme (helix-editor#3610)
1 parent 2fb56ed commit abd9a0e

File tree

1 file changed

+96
-0
lines changed

1 file changed

+96
-0
lines changed

runtime/themes/varua.toml

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
# Varua: an easy on the eyes color palette based on Gruvbox Material and Everforest by sainnhe.
2+
# Author : Kamek <[email protected]>
3+
4+
"constant.character.escape" = "orange"
5+
"type" = "blue"
6+
"constant" = "purple"
7+
"constant.numeric" = "purple"
8+
"string" = "green"
9+
"comment" = "grey0"
10+
"variable" = "fg"
11+
"variable.builtin" = "blue"
12+
"variable.parameter" = "fg"
13+
"variable.other.member" = "fg"
14+
"label" = "aqua"
15+
"punctuation" = "grey2"
16+
"punctuation.delimiter" = "grey2"
17+
"punctuation.bracket" = "fg"
18+
"keyword" = "purple"
19+
"operator" = "orange"
20+
"function" = "green"
21+
"function.builtin" = "blue"
22+
"function.macro" = "aqua"
23+
"tag" = "yellow"
24+
"namespace" = "aqua"
25+
"attribute" = "aqua"
26+
"constructor" = "aqua"
27+
"module" = "blue"
28+
"special" = "orange"
29+
30+
"markup.heading.marker" = "grey2"
31+
"markup.heading.1" = { fg = "red", modifiers = ["bold"] }
32+
"markup.heading.2" = { fg = "orange", modifiers = ["bold"] }
33+
"markup.heading.3" = { fg = "yellow", modifiers = ["bold"] }
34+
"markup.heading.4" = { fg = "green", modifiers = ["bold"] }
35+
"markup.heading.5" = { fg = "blue", modifiers = ["bold"] }
36+
"markup.heading.6" = { fg = "fg", modifiers = ["bold"] }
37+
"markup.list" = "red"
38+
"markup.link.url" = { fg = "blue", modifiers = ["underlined"] }
39+
"markup.link.text" = "purple"
40+
"markup.quote" = "grey2"
41+
"markup.raw" = "green"
42+
43+
"diff.plus" = "green"
44+
"diff.delta" = "orange"
45+
"diff.minus" = "red"
46+
47+
"ui.background" = { bg = "bg0" }
48+
"ui.cursorline.primary" = { bg = "bg2" }
49+
"ui.cursor" = { fg = "bg0", bg = "fg" }
50+
"ui.cursor.match" = { fg = "orange", bg = "bg_yellow" }
51+
"ui.cursor.insert" = { fg = "bg0", bg = "grey1" }
52+
"ui.cursor.select" = { fg = "bg0", bg = "blue" }
53+
"ui.linenr" = "grey0"
54+
"ui.linenr.selected" = "fg"
55+
"ui.statusline" = { fg = "fg", bg = "bg2" }
56+
"ui.statusline.inactive" = { fg = "grey0", bg = "bg1" }
57+
"ui.popup" = { fg = "grey0", bg = "bg2" }
58+
"ui.window" = { fg = "grey0", bg = "bg1" }
59+
"ui.help" = { fg = "fg", bg = "bg1" }
60+
"ui.text" = "fg"
61+
"ui.text.focus" = "fg"
62+
"ui.menu" = { fg = "fg", bg = "bg2" }
63+
"ui.menu.selected" = { fg = "fg", bg = "bg1" }
64+
"ui.selection" = { bg = "bg3" }
65+
"ui.virtual.whitespace" = "grey0"
66+
67+
"hint" = "blue"
68+
"info" = "aqua"
69+
"warning" = "yellow"
70+
"error" = "red"
71+
"diagnostic" = { modifiers = ["underlined"] }
72+
73+
[palette]
74+
bg0 = "#282828"
75+
bg1 = "#45403d"
76+
bg2 = "#32302f"
77+
bg3 = "#3c3836"
78+
bg4 = "#4c555b"
79+
bg5 = "#53605c"
80+
bg_visual = "#503946"
81+
bg_red = "#4e3e43"
82+
bg_green = "#404d44"
83+
bg_blue = "#394f5a"
84+
bg_yellow = "#4a4940"
85+
86+
fg = "#dfbf8e"
87+
red = "#e67e80"
88+
orange = "#e69875"
89+
yellow = "#dbbc7f"
90+
green = "#a7c080"
91+
aqua = "#83c092"
92+
blue = "#7fbbb3"
93+
purple = "#d699b6"
94+
grey0 = "#928374"
95+
grey1 = "#859289"
96+
grey2 = "#9da9a0"

0 commit comments

Comments
 (0)