Skip to content

Commit c2644e8

Browse files
gj1118wes-adams
authored andcommitted
Add Amberwood theme (helix-editor#6924)
1 parent 7f3fae9 commit c2644e8

File tree

1 file changed

+138
-0
lines changed

1 file changed

+138
-0
lines changed

runtime/themes/amberwood.toml

+138
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,138 @@
1+
2+
"attribute" = { fg = "blue", modifiers = ["italic"] }
3+
"ui.virtual.wrap"="softwrap"
4+
"keyword" = "keyword"
5+
"keyword.control.conditional" = { fg = "conditional", modifiers = ["italic"] }
6+
"keyword.directive" = "magenta" # -- preprocessor comments (#if in C)
7+
8+
"namespace" = { fg = "namespace", modifiers = ["italic"] }
9+
10+
"punctuation" = "gray06"
11+
"punctuation.delimiter" = "gray06"
12+
13+
"operator" = "operator"
14+
"special" = "yellow"
15+
16+
"variable" = {fg="fg"}
17+
"variable.builtin" = "bright_blue"
18+
"variable.parameter" = {fg="white", modifiers=["italic"]}
19+
"variable.other.member" = "white"
20+
21+
"type" = "bright_blue"
22+
"type.builtin" = "magenta"
23+
"type.enum.variant" = "magenta"
24+
25+
"constructor" = "yellow"
26+
27+
"function" = {fg="function", modifiers=["italic"]}
28+
"function.macro" = "bright_cyan"
29+
"function.builtin" = "support_function"
30+
31+
"tag" = "tag"
32+
"comment" = { fg = "comment", modifiers = ["italic"] }
33+
34+
"string" = "string"
35+
"string.regexp" = "green"
36+
"string.special" = "yellow"
37+
38+
"constant" = "constant"
39+
"constant.builtin" = "yellow"
40+
"constant.numeric" = "numeric"
41+
"constant.character.escape" = "cyan"
42+
43+
# used for lifetimes
44+
"label" = "yellow"
45+
46+
"markup.heading.marker" = { fg = "gray06" }
47+
"markup.heading" = { fg = "bright_blue", modifiers = ["bold"] }
48+
"markup.list" = "gray06"
49+
"markup.bold" = { modifiers = ["bold"] }
50+
"markup.italic" = { modifiers = ["italic"] }
51+
"markup.link.url" = { fg = "green", modifiers = ["underlined"] }
52+
"markup.link.text" = { fg = "blue", modifiers = ["italic"] }
53+
"markup.raw" = "yellow"
54+
55+
"diff.plus" = "bright_green"
56+
"diff.minus" = "red"
57+
"diff.delta" = "bright_blue"
58+
59+
"ui.background" = { bg = "bg" }
60+
"ui.background.separator" = { fg = "fg" }
61+
62+
"ui.linenr" = { fg = "gray04" }
63+
"ui.linenr.selected" = { fg = "fg" }
64+
65+
"ui.statusline" = { fg = "status_line_fg", bg = "gray01" }
66+
"ui.statusline.inactive" = { fg = "fg", bg = "gray01", modifiers = ["dim"] }
67+
"ui.statusline.normal" = { fg = "bg", bg = "cyan", modifiers = ["bold"] }
68+
"ui.statusline.insert" = { fg = "bg", bg = "blue", modifiers = ["bold"] }
69+
"ui.statusline.select" = { fg = "bg", bg = "magenta", modifiers = ["bold"] }
70+
71+
"ui.popup" = { bg = "gray01" }
72+
"ui.window" = { fg = "gray02" }
73+
"ui.help" = { bg = "gray01", fg = "white" }
74+
75+
"ui.text" = { fg = "fg" }
76+
"ui.text.focus" = { fg = "fg" }
77+
78+
"ui.virtual" = { fg = "gray02" }
79+
"ui.virtual.ruler" = {bg="gray02"}
80+
"ui.virtual.indent-guide" = { fg = "gray02" }
81+
"ui.virtual.inlay-hint" = { fg = "gray03" }
82+
83+
84+
"ui.selection" = { bg = "gray03" }
85+
"ui.selection.primary" = { bg = "gray03" }
86+
87+
"ui.cursor" = {fg="bg", bg = "cursor" }
88+
"ui.cursor.match" = { fg = "yellow", modifiers = ["bold", "underlined"] }
89+
"ui.cursorline.primary" = { bg = "gray01" }
90+
91+
"ui.highlight" = { bg = "gray02" }
92+
93+
"ui.menu" = { fg = "white", bg = "gray01" }
94+
"ui.menu.selected" = { fg = "bright_white", bg = "gray03" }
95+
"ui.menu.scroll" = { fg = "gray04", bg = "gray01" }
96+
97+
diagnostic = { modifiers = ["underlined"] }
98+
99+
warning = "yellow"
100+
error = "error"
101+
info = "bright_blue"
102+
hint = "bright_cyan"
103+
104+
[palette]
105+
error="#fca5a5"
106+
bg = "#0F1014"
107+
fg = "#c9c7cd"
108+
green = "#90b99f"
109+
bright_green = "#9dc6ac"
110+
yellow = "#e5c890"
111+
blue = "#aca1cf"
112+
bright_blue = "#b9aeda"
113+
magenta = "#e29eca"
114+
cyan = "#ea83a5"
115+
bright_cyan = "#f591b2"
116+
white = "#c1c0d4"
117+
bright_white = "#cac9dd"
118+
gray01 = "#1b1b1d"
119+
gray02 = "#2a2a2d"
120+
gray03 = "#3e3e43"
121+
gray04 = "#57575f"
122+
gray06 = "#9998a8"
123+
gray07 = "#c1c0d4"
124+
comment="#808080"
125+
red="#e78284"
126+
function="#e5c890"
127+
support_function="#9898a6"
128+
constant="#8eb6f5"
129+
string="#9898a6"
130+
tag="#9898a6"
131+
keyword="#8eb6f5"
132+
namespace= "#c58fff"
133+
numeric= "#e9c46a"
134+
status_line_fg = "#e5c890"
135+
operator="#8eb6f5"
136+
softwrap="#808080"
137+
conditional="#a8a29e"
138+
cursor="#e5c890"

0 commit comments

Comments
 (0)