Unnamed repository; edit this file 'description' to name the repository.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
# Author: Shu Kutsuzawa <[email protected]>
# License: MIT
# Akari Night — A dark palette inspired by Japanese alleys lit by round lanterns.

# UI elements
"ui.background" = { bg = "background" }
"ui.text" = "foreground"
"ui.text.focus" = { fg = "selection-fg", bg = "selection-bg" }
"ui.text.inactive" = { fg = "bright-black" }
"ui.text.info" = { fg = "info" }
"ui.text.directory" = { fg = "directory" }

"ui.cursor" = { fg = "cursor-text", bg = "cursor" }
"ui.cursor.normal" = { fg = "cursor-text", bg = "cursor" }
"ui.cursor.primary" = { fg = "cursor-text", bg = "cursor" }
"ui.cursor.primary.normal" = { fg = "cursor-text", bg = "cursor" }
"ui.cursor.match" = { fg = "lantern", bg = "sunken", modifiers = ["bold"] }
"ui.cursor.insert" = { fg = "cursor-text", bg = "green" }
"ui.cursor.primary.insert" = { fg = "cursor-text", bg = "green" }
"ui.cursor.select" = { fg = "cursor-text", bg = "magenta" }
"ui.cursor.primary.select" = { fg = "cursor-text", bg = "magenta" }

"ui.selection" = { bg = "selection-bg" }
"ui.selection.primary" = { bg = "selection-bg" }

"ui.cursorline.primary" = { bg = "cursorline" }
"ui.cursorline.secondary" = { bg = "surface" }
"ui.cursorcolumn.primary" = { bg = "surface" }
"ui.cursorcolumn.secondary" = { bg = "surface" }

"ui.gutter" = { bg = "background" }
"ui.gutter.selected" = { bg = "cursorline" }
"ui.linenr" = { fg = "bright-black" }
"ui.linenr.selected" = { fg = "lantern" }

"ui.statusline" = { fg = "foreground", bg = "surface" }
"ui.statusline.inactive" = { fg = "comment", bg = "surface" }
"ui.statusline.normal" = { fg = "background", bg = "green", modifiers = ["bold"] }
"ui.statusline.insert" = { fg = "background", bg = "lantern", modifiers = ["bold"] }
"ui.statusline.select" = { fg = "background", bg = "magenta", modifiers = ["bold"] }
"ui.statusline.separator" = { fg = "bright-black", bg = "surface" }

"ui.popup" = { fg = "foreground", bg = "raised" }
"ui.popup.info" = { fg = "foreground", bg = "raised" }
"ui.window" = { fg = "border" }
"ui.background.separator" = { bg = "surface" }
"ui.help" = { fg = "foreground", bg = "raised" }

"ui.menu" = { fg = "foreground", bg = "raised" }
"ui.menu.selected" = { fg = "selection-fg", bg = "selection-bg" }
"ui.menu.scroll" = { fg = "bright-black", bg = "raised" }

"ui.virtual.ruler" = { bg = "surface" }
"ui.virtual.whitespace" = { fg = "bright-black" }
"ui.virtual.indent-guide" = { fg = "bright-black" }
"ui.virtual.inlay-hint" = { fg = "comment" }
"ui.virtual.inlay-hint.parameter" = { fg = "comment" }
"ui.virtual.inlay-hint.type" = { fg = "comment" }
"ui.virtual.wrap" = { fg = "bright-black" }
"ui.virtual.jump-label" = { fg = "bright-red", modifiers = ["bold"] }

"ui.debug.breakpoint" = { fg = "red" }
"ui.debug.active" = { fg = "lantern", modifiers = ["bold"] }

"ui.highlight" = { bg = "match-bg" }
"ui.highlight.frameline" = { bg = "surface" }

"ui.bufferline" = { fg = "bright-black", bg = "surface" }
"ui.bufferline.active" = { fg = "foreground", bg = "background" }
"ui.bufferline.background" = { bg = "surface" }

"ui.picker.header" = { fg = "bright-blue", modifiers = ["bold"] }
"ui.picker.header.column" = { fg = "bright-blue", modifiers = ["bold"] }
"ui.picker.header.column.active" = { fg = "lantern", modifiers = ["bold"] }

# Diagnostics
"error" = { fg = "red", modifiers = ["bold"] }
"warning" = { fg = "lantern" }
"info" = { fg = "blue" }
"hint" = { fg = "comment" }

"diagnostic.error" = { underline = { color = "red", style = "curl" } }
"diagnostic.warning" = { underline = { color = "lantern", style = "curl" } }
"diagnostic.info" = { underline = { color = "blue", style = "curl" } }
"diagnostic.hint" = { underline = { color = "comment", style = "curl" } }
"diagnostic.unnecessary" = { modifiers = ["dim"] }
"diagnostic.deprecated" = { modifiers = ["crossed_out"] }

"tabstop" = { underline = { color = "lantern", style = "dashed" } }

# Diff
"diff.plus" = "green"
"diff.plus.gutter" = "green"
"diff.minus" = "red"
"diff.minus.gutter" = "red"
"diff.delta" = "amber"
"diff.delta.gutter" = "amber"
"diff.delta.moved" = "diff-moved"
"diff.delta.conflict" = { fg = "conflict", modifiers = ["bold"] }

# Markup
"markup.heading" = { fg = "lantern", modifiers = ["bold"] }
"markup.heading.marker" = { fg = "comment" }
"markup.heading.1" = { fg = "lantern", modifiers = ["bold"] }
"markup.heading.2" = { fg = "amber", modifiers = ["bold"] }
"markup.heading.3" = { fg = "ember", modifiers = ["bold"] }
"markup.heading.4" = { fg = "amber" }
"markup.heading.5" = { fg = "comment", modifiers = ["bold"] }
"markup.heading.6" = { fg = "blue" }
"markup.list" = { fg = "cyan" }
"markup.list.numbered" = { fg = "lantern" }
"markup.list.unnumbered" = { fg = "cyan" }
"markup.list.checked" = { fg = "green" }
"markup.list.unchecked" = { fg = "comment" }
"markup.bold" = { modifiers = ["bold"] }
"markup.italic" = { modifiers = ["italic"] }
"markup.strikethrough" = { modifiers = ["crossed_out"] }
"markup.link.url" = { fg = "link", modifiers = ["underlined"] }
"markup.link.text" = { fg = "cyan" }
"markup.link.label" = { fg = "magenta" }
"markup.quote" = { fg = "comment", modifiers = ["dim"] }
"markup.raw" = { fg = "bright-green" }
"markup.raw.inline" = { fg = "bright-green" }
"markup.raw.block" = { fg = "bright-green" }
"markup.normal.completion" = "foreground"
"markup.normal.hover" = "foreground"
"markup.heading.completion" = { fg = "lantern", modifiers = ["bold"] }
"markup.heading.hover" = { fg = "lantern", modifiers = ["bold"] }
"markup.raw.inline.completion" = { fg = "bright-green" }
"markup.raw.inline.hover" = { fg = "bright-green" }

# Syntax highlighting
"attribute" = { fg = "amber" }
"type" = { fg = "amber" }
"type.builtin" = { fg = "yellow" }
"type.enum" = { fg = "amber" }
"type.enum.variant" = { fg = "amber" }
"type.parameter" = { fg = "yellow" }

"constructor" = { fg = "amber" }

"constant" = { fg = "constant" }
"constant.builtin" = { fg = "constant" }
"constant.builtin.boolean" = { fg = "constant" }
"constant.character" = { fg = "lantern" }
"constant.character.escape" = { fg = "escape" }
"constant.numeric" = { fg = "constant" }
"constant.numeric.integer" = { fg = "constant" }
"constant.numeric.float" = { fg = "constant" }

"string" = { fg = "green" }
"string.regexp" = { fg = "regexp" }
"string.regexp.special" = { fg = "bright-magenta" }
"string.special" = { fg = "green" }
"string.special.path" = { fg = "path" }
"string.special.url" = { fg = "link", modifiers = ["underlined"] }
"string.special.symbol" = { fg = "bright-magenta" }

"comment" = { fg = "comment", modifiers = ["dim"] }
"comment.line" = { fg = "comment", modifiers = ["dim"] }
"comment.line.documentation" = { fg = "comment", modifiers = ["dim"] }
"comment.block" = { fg = "comment", modifiers = ["dim"] }
"comment.block.documentation" = { fg = "comment", modifiers = ["dim"] }
"comment.unused" = { fg = "comment", modifiers = ["dim"] }

"variable" = "foreground"
"variable.builtin" = { fg = "bright-red" }
"variable.parameter" = "foreground"
"variable.other" = "foreground"
"variable.other.member" = "member"
"variable.other.member.private" = "member"

"label" = { fg = "amber" }

"punctuation" = "foreground"
"punctuation.bracket" = "foreground"
"punctuation.delimiter" = "foreground"
"punctuation.special" = { fg = "amber" }

"keyword" = { fg = "lantern" }
"keyword.control" = { fg = "lantern" }
"keyword.control.conditional" = { fg = "lantern" }
"keyword.control.repeat" = { fg = "lantern" }
"keyword.control.import" = { fg = "lantern" }
"keyword.control.return" = { fg = "lantern" }
"keyword.control.exception" = { fg = "lantern" }
"keyword.operator" = { fg = "lantern" }
"keyword.directive" = { fg = "macro" }
"keyword.function" = { fg = "lantern" }
"keyword.storage" = { fg = "lantern" }
"keyword.storage.type" = { fg = "lantern" }
"keyword.storage.modifier" = { fg = "lantern" }

"operator" = "foreground"

"function" = { fg = "magenta" }
"function.builtin" = { fg = "bright-magenta" }
"function.method" = { fg = "magenta" }
"function.method.private" = { fg = "magenta" }
"function.macro" = { fg = "macro" }
"function.special" = { fg = "bright-magenta" }

"tag" = { fg = "lantern" }
"tag.builtin" = { fg = "blue" }

"namespace" = { fg = "amber" }

"special" = { fg = "bright-yellow" }

"module" = { fg = "amber" }

# Palette definition (MUST be at the end of the file)
[palette]
background = "#25231F"
foreground = "#E6DED3"

cursor = "#E26A3B"
cursor-text = "#25231F"
selection-bg = "#51422E"
selection-fg = "#E6DED3"
cursorline = "#412E23"

surface = "#323333"
raised = "#363939"
border = "#3F4346"

black = "#1E1C19"
red = "#D25046"
green = "#7FAF6A"
yellow = "#D4A05A"
blue = "#7A8FA2"
magenta = "#8E7BA0"
cyan = "#6F8F8A"
white = "#E6DED3"

bright-black = "#716A5F"
bright-red = "#DE7F77"
bright-green = "#A1C492"
bright-yellow = "#E4C397"
bright-blue = "#A7B5C1"
bright-magenta = "#B4A7C0"
bright-cyan = "#9AB1AD"
bright-white = "#EFEAE3"

lantern = "#E26A3B"
ember = "#D65A3A"
amber = "#D4A05A"
constant = "#8CA6A1"
comment = "#9BABB9"
path = "#7FAF6A"
macro = "#B4A7C0"
escape = "#B4A7C0"
regexp = "#A1C492"
link = "#A7B5C1"
member = "#7A8FA2"
directory = "#6F8F8A"
sunken = "#412E23"
match-bg = "#4B3125"
info = "#7A8FA2"
diff-moved = "#7A8FA2"
conflict = "#D25046"