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

# Interface colors
"ui.background" = { bg = "background" }
"ui.background.separator" = { fg = "muted" }
"ui.cursor" = { fg = "background", bg = "cursor" }
"ui.cursor.normal" = { fg = "background", bg = "cursor" }
"ui.cursor.insert" = { fg = "background", bg = "accent" }
"ui.cursor.select" = { fg = "background", bg = "purple" }
"ui.cursor.match" = { fg = "background", bg = "yellow" }
"ui.cursor.primary" = { fg = "background", bg = "cursor" }
"ui.cursor.primary.normal" = { fg = "background", bg = "cursor" }
"ui.cursor.primary.insert" = { fg = "background", bg = "accent" }
"ui.cursor.primary.select" = { fg = "background", bg = "purple" }

"ui.gutter" = { bg = "background" }
"ui.gutter.selected" = { bg = "line_highlight" }
"ui.linenr" = { fg = "line_numbers" }
"ui.linenr.selected" = { fg = "accent", modifiers = ["bold"] }

"ui.statusline" = { fg = "foreground", bg = "background" }
"ui.statusline.inactive" = { fg = "muted", bg = "background" }
"ui.statusline.normal" = { fg = "background", bg = "accent" }
"ui.statusline.insert" = { fg = "background", bg = "green" }
"ui.statusline.select" = { fg = "background", bg = "purple" }

"ui.popup" = { fg = "foreground", bg = "popup_bg" }
"ui.popup.info" = { fg = "foreground", bg = "popup_bg" }
"ui.window" = { fg = "muted" }
"ui.help" = { fg = "foreground", bg = "popup_bg" }

"ui.text" = { fg = "foreground" }
"ui.text.focus" = { fg = "accent", modifiers = ["bold"] }
"ui.text.inactive" = { fg = "muted" }
"ui.text.info" = { fg = "foreground" }

"ui.virtual.ruler" = { bg = "line_highlight" }
"ui.virtual.whitespace" = { fg = "muted" }
"ui.virtual.indent-guide" = { fg = "muted" }
"ui.virtual.inlay-hint" = { fg = "hint" }
"ui.virtual.jump-label" = { fg = "white", bg = "background" }

"ui.menu" = { fg = "foreground", bg = "popup_bg" }
"ui.menu.selected" = { fg = "background", bg = "accent" }
"ui.menu.scroll" = { fg = "muted", bg = "background" }

"ui.selection" = { bg = "selection_background" }
"ui.selection.primary" = { bg = "selection_background" }
"ui.highlight" = { bg = "line_highlight" }
"ui.cursorline.primary" = { bg = "line_highlight" }
"ui.cursorline.secondary" = { bg = "line_highlight" }

# Diagnostics
"warning" = { fg = "warning" }
"error" = { fg = "error" }
"info" = { fg = "info" }
"hint" = { fg = "hint" }
"diagnostic" = { modifiers = ["underlined"] }
"diagnostic.hint" = { fg = "hint", modifiers = ["underlined"] }
"diagnostic.info" = { fg = "info", modifiers = ["underlined"] }
"diagnostic.warning" = { fg = "warning", modifiers = ["underlined"] }
"diagnostic.error" = { fg = "error", modifiers = ["underlined"] }
"diagnostic.unnecessary" = { fg = "muted", modifiers = ["dim"] }

# Syntax highlighting
"comment" = { fg = "comment", modifiers = ["italic"] }
"constant" = { fg = "red" }
"constant.character" = { fg = "green" }
"constant.character.escape" = { fg = "yellow" }
"constant.numeric" = { fg = "orange" }
"constant.builtin" = { fg = "red" }

"string" = { fg = "green" }
"string.regexp" = { fg = "blue" }
"string.special" = { fg = "yellow" }

"type" = { fg = "yellow" }
"type.builtin" = { fg = "yellow" }
"type.enum" = { fg = "yellow" }
"type.parameter" = { fg = "orange" }

"constructor" = { fg = "red" }
"function" = { fg = "yellow" }
"function.builtin" = { fg = "yellow" }
"function.method" = { fg = "yellow" }
"function.macro" = { fg = "purple" }

"variable" = { fg = "cyan" }
"variable.builtin" = { fg = "red" }
"variable.parameter" = { fg = "orange" }
"variable.other.member" = { fg = "cyan" }

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

"operator" = { fg = "red" }
"punctuation" = { fg = "foreground" }
"punctuation.delimiter" = { fg = "foreground" }
"punctuation.bracket" = { fg = "foreground" }
"punctuation.special" = { fg = "hot_pink" }

"tag" = { fg = "hot_pink" }
"attribute" = { fg = "orange" }
"namespace" = { fg = "yellow" }
"module" = { fg = "yellow" }
"special" = { fg = "hot_pink" }

# Markup
"markup.heading" = { fg = "hot_pink", modifiers = ["bold"] }
"markup.heading.marker" = { fg = "hot_pink" }
"markup.list" = { fg = "yellow" }
"markup.list.marker" = { fg = "hot_pink" }
"markup.bold" = { fg = "orange", modifiers = ["bold"] }
"markup.italic" = { fg = "purple", modifiers = ["italic"] }
"markup.strikethrough" = { modifiers = ["crossed_out"] }
"markup.link.url" = { fg = "blue", modifiers = ["underlined"] }
"markup.link.text" = { fg = "cyan" }
"markup.quote" = { fg = "comment", modifiers = ["italic"] }
"markup.raw" = { fg = "green" }
"markup.raw.block" = { fg = "green" }

# Diff
"diff.plus" = { fg = "diff_add" }
"diff.minus" = { fg = "diff_delete" }
"diff.delta" = { fg = "diff_change" }

# Color palette
[palette]
# Main colors
white = "#FFFFFF"
background = "#23262E"
foreground = "#D5CED9"
cursor = "#FFFFFF"

# UI colors
line_highlight = "#2e323d"
selection_background = "#3D4352"
line_numbers = "#746f77"
muted = "#746f77"
popup_bg = "#20232A"

# Accent colors
accent = "#00e8c6"   # Cyan
cyan = "#00e8c6"     # Cyan
orange = "#f39c12"   # Orange
yellow = "#FFE66D"   # Yellow
purple = "#c74ded"   # Purple
hot_pink = "#f92672" # Hot Pink
blue = "#7cb7ff"     # Blue
red = "#ee5d43"      # Red
green = "#96E072"    # Green

# Syntax colors
comment = "#A0A1A7"
string = "#96E072"
number = "#f39c12"
keyword = "#c74ded"
function = "#FFE66D"
variable = "#00e8c6"
type = "#FFE66D"
constant = "#ee5d43"
operator = "#ee5d43"
tag = "#f92672"
attribute = "#f39c12"
punctuation = "#D5CED9"

# Diagnostic colors
error = "#FC644D"
warning = "#FF9F2E"
info = "#00b0ff"
hint = "#746f77"

# Diff colors
diff_add = "#96E072"
diff_delete = "#FC644D"
diff_change = "#FFE66D"