-
Notifications
You must be signed in to change notification settings - Fork 229
Expand file tree
/
Copy pathkanagawa-dragon.toml
More file actions
249 lines (215 loc) · 7.64 KB
/
kanagawa-dragon.toml
File metadata and controls
249 lines (215 loc) · 7.64 KB
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
# Syntax highlighting
# -------------------
"attribute" = "dragonOrange"
"type" = "dragonAqua"
"type.builtin" = "dragonAqua"
"type.enum.variant" = "dragonAqua"
"constructor" = "dragonTeal"
"constant" = "dragonOrange"
"constant.numeric" = "dragonPink"
"constant.character" = "dragonGreen2"
"constant.character.escape" = "dragonRed"
"string" = "dragonGreen2"
"string.regexp" = "dragonRed"
"string.special" = "dragonTeal"
"string.special.symbol" = "dragonYellow"
"string.special.url" = { fg = "dragonTeal", underline = { color = "dragonTeal", style = "curl" } }
"comment" = { fg = "dragonAsh", modifiers = ["italic"] }
"variable" = "dragonWhite"
"variable.parameter" = "dragonGray"
"variable.builtin" = "dragonRed"
"variable.other.member" = "dragonYellow"
"label" = "dragonTeal"
"punctuation" = "dragonGray2"
"punctuation.special" = "dragonTeal"
"keyword" = { fg = "dragonViolet", modifiers = ["italic"] }
"keyword.control.conditional" = { fg = "dragonViolet", modifiers = ["italic"] }
"keyword.control.import" = { fg = "dragonViolet", modifiers = ["italic"] }
"keyword.control.return" = { fg = "dragonRed", modifiers = ["italic"] }
"keyword.control.exception" = { fg = "dragonRed", modifiers = ["bold"] }
"keyword.function" = { fg = "dragonViolet", modifiers = ["italic"] }
"keyword.directive" = "dragonRed"
"keyword.directive.define" = "dragonRed"
"keyword.operator" = { fg = "dragonRed", modifiers = ["bold"] }
"operator" = "dragonRed"
"function" = "dragonBlue2"
"function.macro" = "dragonRed"
"tag" = "dragonBlue2"
"namespace" = "dragonYellow"
"special" = "dragonTeal"
"markup.heading" = "dragonBlue2"
"markup.heading.1" = "dragonBlue2"
"markup.heading.2" = "dragonBlue2"
"markup.heading.3" = "dragonBlue2"
"markup.heading.4" = "dragonBlue2"
"markup.heading.5" = "dragonBlue2"
"markup.heading.6" = "dragonBlue2"
"markup.list" = "dragonTeal"
"markup.list.unchecked" = "dragonBlack6"
"markup.list.checked" = "dragonGreen2"
"markup.bold" = { fg = "dragonRed", modifiers = ["bold"] }
"markup.italic" = { fg = "dragonRed", modifiers = ["italic"] }
"markup.strikethrough" = { modifiers = ["crossed_out"] }
"markup.underline" = { modifiers = ["underlined"] }
"markup.link.url" = { fg = "dragonTeal", underline = { color = "dragonTeal", style = "curl" } }
"markup.link.text" = "dragonViolet"
"markup.link.label" = "dragonYellow"
"markup.raw" = "dragonGreen2"
"markup.quote" = "dragonGray"
"diff.plus" = "autumnGreen"
"diff.minus" = "autumnRed"
"diff.delta" = "autumnYellow"
# User Interface
# --------------
"ui.background" = { fg = "dragonWhite", bg = "dragonBlack3" }
"ui.linenr" = { fg = "dragonBlack6" }
"ui.linenr.selected" = { fg = "roninYellow" }
"ui.statusline" = { fg = "oldWhite", bg = "dragonBlack0" }
"ui.statusline.inactive" = { fg = "dragonBlack6", bg = "dragonBlack0" }
"ui.statusline.normal" = { fg = "dragonBlack3", bg = "dragonBlue2", modifiers = ["bold"] }
"ui.statusline.insert" = { fg = "dragonBlack3", bg = "springGreen", modifiers = ["bold"] }
"ui.statusline.select" = { fg = "dragonBlack3", bg = "dragonViolet", modifiers = ["bold"] }
"ui.popup" = { fg = "oldWhite", bg = "dragonBlack0" }
"ui.window" = { fg = "dragonBlack0" }
"ui.help" = { fg = "oldWhite", bg = "dragonBlack0" }
"ui.bufferline" = { fg = "oldWhite", bg = "dragonBlack0" }
"ui.bufferline.active" = { fg = "dragonViolet", bg = "dragonBlack3", underline = { color = "dragonViolet", style = "line" } }
"ui.bufferline.background" = { bg = "dragonBlack0" }
"ui.text" = "dragonWhite"
"ui.text.focus" = { fg = "dragonWhite", bg = "dragonBlack4", modifiers = ["bold"] }
"ui.text.inactive" = { fg = "dragonBlack6" }
"ui.text.directory" = { fg = "dragonBlue2" }
"ui.virtual" = "dragonBlack6"
"ui.virtual.ruler" = { bg = "dragonBlack4" }
"ui.virtual.indent-guide" = "dragonBlack4"
"ui.virtual.inlay-hint" = { fg = "dragonBlack6", bg = "dragonBlack2" }
"ui.virtual.jump-label" = { fg = "dragonRed", modifiers = ["bold"] }
"ui.selection" = { bg = "waveBlue1" }
"ui.cursor" = { fg = "dragonBlack3", bg = "oldWhite" }
"ui.cursor.primary" = { fg = "dragonBlack3", bg = "dragonWhite" }
"ui.cursor.match" = { fg = "roninYellow", modifiers = ["bold"] }
"ui.cursor.primary.normal" = { fg = "dragonBlack3", bg = "dragonWhite" }
"ui.cursor.primary.insert" = { fg = "dragonBlack3", bg = "dragonWhite" }
"ui.cursor.primary.select" = { fg = "dragonBlack3", bg = "dragonWhite" }
"ui.cursor.normal" = { fg = "dragonBlack3", bg = "oldWhite" }
"ui.cursor.insert" = { fg = "dragonBlack3", bg = "oldWhite" }
"ui.cursor.select" = { fg = "dragonBlack3", bg = "oldWhite" }
"ui.cursorline.primary" = { bg = "dragonBlack5" }
"ui.highlight" = { bg = "dragonBlack4", modifiers = ["bold"] }
"ui.menu" = { fg = "fujiWhite", bg = "waveBlue1" }
"ui.menu.selected" = { fg = "fujiWhite", bg = "waveBlue2", modifiers = ["bold"] }
"diagnostic.error" = { underline = { color = "samuraiRed", style = "curl" } }
"diagnostic.warning" = { underline = { color = "roninYellow", style = "curl" } }
"diagnostic.info" = { underline = { color = "dragonBlue", style = "curl" } }
"diagnostic.hint" = { underline = { color = "waveAqua1", style = "curl" } }
"diagnostic.unnecessary" = { modifiers = ["dim"] }
"diagnostic.deprecated" = { modifiers = ["crossed_out"] }
error = "samuraiRed"
warning = "roninYellow"
info = "dragonBlue"
hint = "waveAqua1"
rainbow = ["dragonRed", "dragonOrange", "dragonYellow", "dragonGreen2", "dragonTeal", "dragonViolet"]
[palette]
sumiInk0 = "#16161D"
sumiInk1 = "#181820"
sumiInk2 = "#1a1a22"
sumiInk3 = "#1F1F28"
sumiInk4 = "#2A2A37"
sumiInk5 = "#363646"
sumiInk6 = "#54546D"
waveBlue1 = "#223249"
waveBlue2 = "#2D4F67"
winterGreen = "#2B3328"
winterYellow = "#49443C"
winterRed = "#43242B"
winterBlue = "#252535"
autumnGreen = "#76946A"
autumnRed = "#C34043"
autumnYellow = "#DCA561"
samuraiRed = "#E82424"
roninYellow = "#FF9E3B"
waveAqua1 = "#6A9589"
dragonBlue = "#658594"
oldWhite = "#C8C093"
fujiWhite = "#DCD7BA"
fujiGray = "#727169"
oniViolet = "#957FB8"
oniViolet2 = "#b8b4d0"
crystalBlue = "#7E9CD8"
springViolet1 = "#938AA9"
springViolet2 = "#9CABCA"
springBlue = "#7FB4CA"
lightBlue = "#A3D4D5"
waveAqua2 = "#7AA89F"
springGreen = "#98BB6C"
boatYellow1 = "#938056"
boatYellow2 = "#C0A36E"
carpYellow = "#E6C384"
sakuraPink = "#D27E99"
waveRed = "#E46876"
peachRed = "#FF5D62"
surimiOrange = "#FFA066"
katanaGray = "#717C7C"
dragonBlack0 = "#0d0c0c"
dragonBlack1 = "#12120f"
dragonBlack2 = "#1D1C19"
dragonBlack3 = "#181616"
dragonBlack4 = "#282727"
dragonBlack5 = "#393836"
dragonBlack6 = "#625e5a"
dragonWhite = "#c5c9c5"
dragonGreen = "#87a987"
dragonGreen2 = "#8a9a7b"
dragonPink = "#a292a3"
dragonOrange = "#b6927b"
dragonOrange2 = "#b98d7b"
dragonGray = "#a6a69c"
dragonGray2 = "#9e9b93"
dragonGray3 = "#7a8382"
dragonBlue2 = "#8ba4b0"
dragonViolet = "#8992a7"
dragonRed = "#c4746e"
dragonAqua = "#8ea4a2"
dragonAsh = "#737c73"
dragonTeal = "#949fb5"
dragonYellow = "#c4b28a"
lotusInk1 = "#545464"
lotusInk2 = "#43436c"
lotusGray = "#dcd7ba"
lotusGray2 = "#716e61"
lotusGray3 = "#8a8980"
lotusWhite0 = "#d5cea3"
lotusWhite1 = "#dcd5ac"
lotusWhite2 = "#e5ddb0"
lotusWhite3 = "#f2ecbc"
lotusWhite4 = "#e7dba0"
lotusWhite5 = "#e4d794"
lotusViolet1 = "#a09cac"
lotusViolet2 = "#766b90"
lotusViolet3 = "#c9cbd1"
lotusViolet4 = "#624c83"
lotusBlue1 = "#c7d7e0"
lotusBlue2 = "#b5cbd2"
lotusBlue3 = "#9fb5c9"
lotusBlue4 = "#4d699b"
lotusBlue5 = "#5d57a3"
lotusGreen = "#6f894e"
lotusGreen2 = "#6e915f"
lotusGreen3 = "#b7d0ae"
lotusPink = "#b35b79"
lotusOrange = "#cc6d00"
lotusOrange2 = "#e98a00"
lotusYellow = "#77713f"
lotusYellow2 = "#836f4a"
lotusYellow3 = "#de9800"
lotusYellow4 = "#f9d791"
lotusRed = "#c84053"
lotusRed2 = "#d7474b"
lotusRed3 = "#e82424"
lotusRed4 = "#d9a594"
lotusAqua = "#597b75"
lotusAqua2 = "#5e857a"
lotusTeal1 = "#4e8ca2"
lotusTeal2 = "#6693bf"
lotusTeal3 = "#5a7785"
lotusCyan = "#d7e3d8"