-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy paththeme.lua
More file actions
677 lines (638 loc) · 35.9 KB
/
theme.lua
File metadata and controls
677 lines (638 loc) · 35.9 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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
local c = require('darkplus.palette')
local hl = vim.api.nvim_set_hl
local theme = {}
theme.set_highlights = function()
-- Editor
hl(0, "Normal", { fg = c.fg, bg = c.bg })
hl(0, "SignColumn", { fg = 'NONE', bg = c.bg })
hl(0, "MsgArea", { fg = c.fg, bg = c.bg })
hl(0, "ModeMsg", { fg = c.fg, bg = c.alt_bg })
hl(0, "MsgSeparator", { fg = c.fg, bg = c.bg })
hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.red, undercurl = true, })
hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.yellow, undercurl = true, })
hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.green, underline = true, })
hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.purple, underline = true, })
hl(0, "NormalNC", { fg = c.fg, bg = c.bg })
hl(0, "Pmenu", { fg = c.light_gray, bg = c.menu_bg })
hl(0, "PmenuSel", { fg = 'NONE', bg = c.ui2_blue })
hl(0, "WildMenu", { fg = c.fg, bg = c.ui2_blue })
hl(0, "CursorLineNr", { fg = c.light_gray, bg = 'NONE' })
hl(0, "Folded", { fg = c.gray, bg = c.alt_bg })
hl(0, "FoldColumn", { fg = c.gray, bg = c.alt_bg })
hl(0, "LineNr", { fg = c.gray, bg = 'NONE' })
hl(0, "FloatBorder", { fg = c.gray, bg = c.alt_bg })
hl(0, "Whitespace", { fg = c.dark_gray, bg = 'NONE' })
hl(0, "VertSplit", { fg = c.gray, bg = c.bg })
hl(0, "CursorLine", { fg = 'NONE', bg = c.alt_bg })
hl(0, "CursorColumn", { fg = 'NONE', bg = c.alt_bg })
hl(0, "ColorColumn", { fg = 'NONE', bg = c.alt_bg })
hl(0, "NormalFloat", { fg = 'NONE', bg = c.alt_bg })
hl(0, "Visual", { fg = 'NONE', bg = c.ui_blue })
hl(0, "VisualNOS", { fg = 'NONE', bg = c.alt_bg })
hl(0, "WarningMsg", { fg = c.ui_orange, bg = c.bg })
hl(0, "DiffText", { fg = c.alt_bg, bg = c.sign_delete })
hl(0, "DiffAdd", { fg = c.alt_bg, bg = c.sign_add })
hl(0, "DiffChange", { fg = c.alt_bg, bg = c.sign_change, underline = true, })
hl(0, "DiffDelete", { fg = c.alt_bg, bg = c.sign_delete })
hl(0, "QuickFixLine", { fg = 'NONE', bg = c.ui2_blue })
hl(0, "PmenuSbar", { fg = 'NONE', bg = c.alt_bg })
hl(0, "PmenuThumb", { fg = 'NONE', bg = c.gray })
hl(0, "MatchWord", { fg = 'NONE', bg = c.reference })
hl(0, "MatchParen", { fg = c.hint, bg = c.reference })
hl(0, "MatchWordCur", { fg = 'NONE', bg = c.reference })
hl(0, "MatchParenCur", { fg = 'NONE', bg = c.reference })
hl(0, "Cursor", { fg = c.cursor_fg, bg = c.cursor_bg })
hl(0, "lCursor", { fg = c.cursor_fg, bg = c.cursor_bg })
hl(0, "CursorIM", { fg = c.cursor_fg, bg = c.cursor_bg })
hl(0, "TermCursor", { fg = c.cursor_fg, bg = c.cursor_bg })
hl(0, "TermCursorNC", { fg = c.cursor_fg, bg = c.cursor_bg })
hl(0, "Conceal", { fg = c.gray, bg = 'NONE' })
hl(0, "Directory", { fg = c.folder_blue, bg = 'NONE' })
hl(0, "SpecialKey", { fg = c.blue, bg = 'NONE', bold = true, })
hl(0, "ErrorMsg", { fg = c.error, bg = c.bg, bold = true, })
hl(0, "Search", { fg = 'NONE', bg = c.ui5_blue })
hl(0, "IncSearch", { fg = 'NONE', bg = c.ui2_orange })
hl(0, "Substitute", { fg = 'NONE', bg = c.ui2_orange })
hl(0, "MoreMsg", { fg = c.orange, bg = 'NONE' })
hl(0, "Question", { fg = c.orange, bg = 'NONE' })
hl(0, "EndOfBuffer", { fg = c.bg, bg = 'NONE' })
hl(0, "NonText", { fg = c.dark_gray, bg = 'NONE' })
hl(0, "TabLine", { fg = c.light_gray, bg = c.line })
hl(0, "TabLineSel", { fg = c.fg, bg = c.line })
hl(0, "TabLineFill", { fg = c.line, bg = c.line })
-- Code
hl(0, "Comment", { fg = c.context, bg = 'NONE' })
hl(0, "Variable", { fg = c.light_blue, bg = 'NONE' })
hl(0, "String", { fg = c.orange, bg = 'NONE' })
hl(0, "Character", { fg = c.orange, bg = 'NONE' })
hl(0, "Number", { fg = c.light_green, bg = 'NONE' })
hl(0, "Float", { fg = c.light_green, bg = 'NONE' })
hl(0, "Boolean", { fg = c.blue, bg = 'NONE' })
hl(0, "Constant", { fg = c.purple, bg = 'NONE' })
hl(0, "Type", { fg = c.cyan, bg = 'NONE' })
hl(0, "Function", { fg = c.yellow, bg = 'NONE' })
hl(0, "Keyword", { fg = c.blue, bg = 'NONE' })
hl(0, "Conditional", { fg = c.purple, bg = 'NONE' })
hl(0, "Repeat", { fg = c.purple, bg = 'NONE' })
hl(0, "Operator", { fg = c.fg, bg = 'NONE' })
hl(0, "PreProc", { fg = c.purple, bg = 'NONE' })
hl(0, "Include", { fg = c.purple, bg = 'NONE' })
hl(0, "Exception", { fg = c.purple, bg = 'NONE' })
hl(0, "StorageClass", { fg = c.cyan, bg = 'NONE' })
hl(0, "Structure", { fg = c.cyan, bg = 'NONE' })
hl(0, "Typedef", { fg = c.purple, bg = 'NONE' })
hl(0, "Define", { fg = c.purple, bg = 'NONE' })
hl(0, "Macro", { fg = c.purple, bg = 'NONE' })
hl(0, "Debug", { fg = c.red, bg = 'NONE' })
hl(0, "Title", { fg = c.blue, bg = 'NONE', bold = true, })
hl(0, "Label", { fg = c.blue, bg = 'NONE' })
hl(0, "SpecialChar", { fg = c.yellow_orange, bg = 'NONE' })
hl(0, "Delimiter", { fg = c.fg, bg = 'NONE' })
hl(0, "SpecialComment", { fg = c.fg, bg = 'NONE' })
hl(0, "Tag", { fg = c.blue, bg = 'NONE' })
hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold = true, })
hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic = true, })
hl(0, "Underlined", { fg = 'NONE', bg = 'NONE', underline = true, })
hl(0, "Ignore", { fg = c.magenta, bg = 'NONE', bold = true, })
hl(0, "Todo", { fg = c.magenta, bg = 'NONE', bold = true, })
hl(0, "Error", { fg = c.error, bg = 'NONE', bold = true, })
hl(0, "Statement", { fg = c.purple, bg = 'NONE' })
hl(0, "Identifier", { fg = c.light_blue, bg = 'NONE' })
hl(0, "PreCondit", { fg = c.purple, bg = 'NONE' })
hl(0, "Special", { fg = c.orange, bg = 'NONE' })
-- Treesitter
hl(0, "@comment", { fg = c.green, bg = 'NONE', italic = true, })
hl(0, "@none", { fg = 'NONE', bg = 'NONE' })
hl(0, "@preproc", { link = 'PreProc' })
hl(0, "@define", { link = 'Define' })
hl(0, "@operator", { link = 'Operator' })
hl(0, "@punctuation.delimiter", { link = 'Delimiter' })
hl(0, "@punctuation.bracket", { link = 'Delimiter' })
hl(0, "@punctuation.special", { link = 'Delimiter' })
hl(0, "@punctuation.special.markdown", { link = 'SpecialKey' })
hl(0, "@string", { link = 'String' })
hl(0, "@string.regex", { link = 'String' })
hl(0, "@string.escape", { link = 'SpecialChar' })
hl(0, "@string.special", { link = 'SpecialChar' })
hl(0, "@character", { link = 'Character' })
hl(0, "@character.special", { link = 'SpecialChar' })
hl(0, "@boolean", { link = 'Boolean' })
hl(0, "@number", { link = 'Number' })
hl(0, "@float", { link = 'Float' })
hl(0, "@function", { link = 'Function' })
hl(0, "@function.builtin", { link = 'Type' })
hl(0, "@function.call", { link = 'Function' })
hl(0, "@function.macro", { link = 'Macro' })
hl(0, "@method", { link = 'Function' })
hl(0, "@method.call", { link = 'Function' })
hl(0, "@constructor", { link = 'Type' })
hl(0, "@parameter", { fg = c.light_blue, bg = 'NONE' })
hl(0, "@keyword", { link = 'Keyword' })
hl(0, "@keyword.css", { fg = c.purple })
hl(0, "@keyword.scss", { fg = c.purple })
hl(0, "@keyword.function", { link = 'Keyword' })
hl(0, "@keyword.operator", { link = 'Include' })
hl(0, "@keyword.return", { link = 'Include' })
hl(0, "@conditional", { link = 'Conditional' })
hl(0, "@repeat", { link = 'Repeat' })
hl(0, "@debug", { link = 'Debug' })
hl(0, "@label", { link = 'Label' })
hl(0, "@include", { link = 'Include' })
hl(0, "@exception", { link = 'Exception' })
hl(0, "@type", { link = 'Type' })
hl(0, "@type.builtin", { link = 'Type' })
hl(0, "@type.definition", { link = 'Typedef' })
hl(0, "@type.qualifier", { fg = c.blue })
hl(0, "@storageclass", { link = 'StorageClass' })
hl(0, "@attribute", { link = 'Type' })
hl(0, "@field", { fg = c.light_blue, bg = 'NONE' })
hl(0, "@property", { fg = c.light_blue, bg = 'NONE' })
hl(0, "@variable", { link = 'Variable' })
hl(0, "@variable.builtin", { fg = c.blue, bg = 'NONE' })
hl(0, "@constant", { link = 'Constant' })
hl(0, "@constant.builtin", { link = 'Constant' })
hl(0, "@constant.macro", { fg = c.vivid_blue, bg = 'NONE' })
hl(0, "@namespace", { fg = c.cyan, bg = 'NONE' })
hl(0, "@symbol", { link = 'Identifier' })
hl(0, "@text", { link = 'None' })
hl(0, "@text.strong", { fg = c.blue, bold = true })
hl(0, "@text.emphasis", { link = 'Italic' })
hl(0, "@text.underline", { link = 'Underlined' })
hl(0, "@text.strike", { fg = 'NONE', bg = 'NONE', strikethrough = true, })
hl(0, "@text.title", { link = 'Title' })
hl(0, "@text.literal", { link = 'String' })
hl(0, "@text.uri", { link = 'Underlined' })
hl(0, "@text.math", { link = 'Special' })
hl(0, "@text.environment", { link = 'Macro' })
hl(0, "@text.environment.name", { link = 'Type' })
hl(0, "@text.reference", { link = 'Constant' })
hl(0, "@text.todo", { link = 'Todo' })
hl(0, "@text.note", { link = 'SpecialComment' })
hl(0, "@text.warning", { link = 'Todo' })
hl(0, "@text.danger", { link = 'WarningMsg' })
hl(0, "@tag", { link = 'Tag' })
hl(0, "@tag.attribute", { fg = c.light_blue, bg = 'NONE', italic = true, })
hl(0, "@tag.delimiter", { fg = c.gray, bg = 'NONE' })
-- semantic highlight
hl(0, "@lsp.type.typeParameter", { link = '@type' })
hl(0, "@lsp.typemod.keyword.documentation", { link = 'Keyword' })
-- markdown
hl(0, "markdownBlockquote", { fg = c.orange, bg = 'NONE' })
hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' })
hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' })
hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' })
hl(0, "markdownH1", { link = 'Title' })
hl(0, "markdownH2", { link = 'Title' })
hl(0, "markdownH3", { link = 'Title' })
hl(0, "markdownH4", { link = 'Title' })
hl(0, "markdownH5", { link = 'Title' })
hl(0, "markdownH6", { link = 'Title' })
hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' })
hl(0, "markdownHeadingRule", { fg = c.fg, bg = 'NONE', bold = true, })
hl(0, "markdownId", { link = 'Identifier' })
hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' })
hl(0, "markdownIdDelimiter", { fg = c.light_gray, bg = 'NONE' })
hl(0, "markdownLinkDelimiter", { fg = c.light_gray, bg = 'NONE' })
hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold = true, })
hl(0, "markdownItalic", { link = 'Italic' })
hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold = true, italic = true, })
hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' })
hl(0, "markdownOrderedListMarker", { fg = c.purple, bg = 'NONE' })
hl(0, "markdownRule", { fg = c.gray, bg = 'NONE' })
if vim.fn.has("nvim-0.7.3") == 1 then
hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underdotted = true, })
else
hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underdot = true, })
end
hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' })
hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' })
hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' })
hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' })
-- Whichkey
hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' })
hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' })
hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' })
hl(0, "WhichKeyDesc", { fg = c.fg, bg = 'NONE' })
hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.alt_bg })
-- Git
hl(0, "SignAdd", { fg = c.sign_add, bg = 'NONE' })
hl(0, "SignChange", { fg = c.sign_change, bg = 'NONE' })
hl(0, "SignDelete", { fg = c.sign_delete, bg = 'NONE' })
hl(0, "GitSignsAdd", { fg = c.sign_add, bg = 'NONE' })
hl(0, "GitSignsChange", { fg = c.sign_change, bg = 'NONE' })
hl(0, "GitSignsDelete", { fg = c.sign_delete, bg = 'NONE' })
-- LSP
hl(0, "DiagnosticHint", { fg = c.hint, bg = 'NONE' })
hl(0, "DiagnosticInfo", { fg = c.info, bg = 'NONE' })
hl(0, "DiagnosticWarn", { fg = c.warn, bg = 'NONE' })
hl(0, "DiagnosticError", { fg = c.error, bg = 'NONE' })
hl(0, "DiagnosticOther", { fg = c.ui_purple, bg = 'NONE' })
hl(0, "DiagnosticSignHint", { link = 'DiagnosticHint' })
hl(0, "DiagnosticSignInfo", { link = 'DiagnosticInfo' })
hl(0, "DiagnosticSignWarn", { link = 'DiagnosticWarn' })
hl(0, "DiagnosticSignError", { link = 'DiagnosticError' })
hl(0, "DiagnosticSignOther", { link = 'DiagnosticOther' })
hl(0, "DiagnosticSignWarning", { link = 'DiagnosticWarn' })
hl(0, "DiagnosticFloatingHint", { link = 'DiagnosticHint' })
hl(0, "DiagnosticFloatingInfo", { link = 'DiagnosticInfo' })
hl(0, "DiagnosticFloatingWarn", { link = 'DiagnosticWarn' })
hl(0, "DiagnosticFloatingError", { link = 'DiagnosticError' })
hl(0, "DiagnosticUnderlineHint", { fg = 'NONE', bg = 'NONE', sp = c.hint, undercurl = true, })
hl(0, "DiagnosticUnderlineInfo", { fg = 'NONE', bg = 'NONE', sp = c.info, undercurl = true, })
hl(0, "DiagnosticUnderlineWarn", { fg = 'NONE', bg = 'NONE', sp = c.warn, undercurl = true, })
hl(0, "DiagnosticUnderlineError", { fg = 'NONE', bg = 'NONE', sp = c.error, undercurl = true, })
hl(0, "DiagnosticSignInformation", { link = 'DiagnosticInfo' })
hl(0, "DiagnosticVirtualTextHint", { fg = c.hint, bg = c.hint_bg })
hl(0, "DiagnosticVirtualTextInfo", { fg = c.info, bg = c.info_bg })
hl(0, "DiagnosticVirtualTextWarn", { fg = c.warn, bg = c.warn_bg })
hl(0, "DiagnosticVirtualTextError", { fg = c.error, bg = c.error_bg })
hl(0, "LspDiagnosticsError", { fg = c.error, bg = 'NONE' })
hl(0, "LspDiagnosticsWarning", { fg = c.warn, bg = 'NONE' })
hl(0, "LspDiagnosticsInfo", { fg = c.info, bg = 'NONE' })
hl(0, "LspDiagnosticsInformation", { link = 'LspDiagnosticsInfo' })
hl(0, "LspDiagnosticsHint", { fg = c.hint, bg = 'NONE' })
hl(0, "LspDiagnosticsDefaultError", { link = 'LspDiagnosticsError' })
hl(0, "LspDiagnosticsDefaultWarning", { link = 'LspDiagnosticsWarning' })
hl(0, "LspDiagnosticsDefaultInformation", { link = 'LspDiagnosticsInfo' })
hl(0, "LspDiagnosticsDefaultInfo", { link = 'LspDiagnosticsInfo' })
hl(0, "LspDiagnosticsDefaultHint", { link = 'LspDiagnosticsHint' })
hl(0, "LspDiagnosticsVirtualTextError", { link = 'DiagnosticVirtualTextError' })
hl(0, "LspDiagnosticsVirtualTextWarning", { link = 'DiagnosticVirtualTextWarn' })
hl(0, "LspDiagnosticsVirtualTextInformation", { link = 'DiagnosticVirtualTextInfo' })
hl(0, "LspDiagnosticsVirtualTextInfo", { link = 'DiagnosticVirtualTextInfo' })
hl(0, "LspDiagnosticsVirtualTextHint", { link = 'DiagnosticVirtualTextHint' })
hl(0, "LspDiagnosticsFloatingError", { link = 'LspDiagnosticsError' })
hl(0, "LspDiagnosticsFloatingWarning", { link = 'LspDiagnosticsWarning' })
hl(0, "LspDiagnosticsFloatingInformation", { link = 'LspDiagnosticsInfo' })
hl(0, "LspDiagnosticsFloatingInfo", { link = 'LspDiagnosticsInfo' })
hl(0, "LspDiagnosticsFloatingHint", { link = 'LspDiagnosticsHint' })
hl(0, "LspDiagnosticsSignError", { link = 'LspDiagnosticsError' })
hl(0, "LspDiagnosticsSignWarning", { link = 'LspDiagnosticsWarning' })
hl(0, "LspDiagnosticsSignInformation", { link = 'LspDiagnosticsInfo' })
hl(0, "LspDiagnosticsSignInfo", { link = 'LspDiagnosticsInfo' })
hl(0, "LspDiagnosticsSignHint", { link = 'LspDiagnosticsHint' })
hl(0, "NvimTreeLspDiagnosticsError", { link = 'LspDiagnosticsError' })
hl(0, "NvimTreeLspDiagnosticsWarning", { link = 'LspDiagnosticsWarning' })
hl(0, "NvimTreeLspDiagnosticsInformation", { link = 'LspDiagnosticsInfo' })
hl(0, "NvimTreeLspDiagnosticsInfo", { link = 'LspDiagnosticsInfo' })
hl(0, "NvimTreeLspDiagnosticsHint", { link = 'LspDiagnosticsHint' })
hl(0, "LspDiagnosticsUnderlineError", { link = 'DiagnosticUnderlineError' })
hl(0, "LspDiagnosticsUnderlineWarning", { link = 'DiagnosticUnderlineWarn' })
hl(0, "LspDiagnosticsUnderlineInformation", { link = 'DiagnosticUnderlineInfo' })
hl(0, "LspDiagnosticsUnderlineInfo", { link = 'DiagnosticUnderlineInfo' })
hl(0, "LspDiagnosticsUnderlineHint", { link = 'DiagnosticUnderlineHint' })
hl(0, "LspReferenceRead", { fg = 'NONE', bg = c.reference })
hl(0, "LspReferenceText", { fg = 'NONE', bg = c.reference })
hl(0, "LspReferenceWrite", { fg = 'NONE', bg = c.reference })
hl(0, "IlluminatedWordRead", { link = 'LspReferenceRead' })
hl(0, "IlluminatedWordText", { link = 'LspReferenceText' })
hl(0, "IlluminatedWordWrite", { link = 'LspReferenceWrite' })
hl(0, "LspCodeLens", { fg = c.context, bg = 'NONE', italic = true, })
hl(0, "LspCodeLensSeparator", { fg = c.context, bg = 'NONE', italic = true, })
-- Quickscope
hl(0, "QuickScopePrimary", { fg = '#ff007c', bg = 'NONE', underline = true, })
hl(0, "QuickScopeSecondary", { fg = '#00dfff', bg = 'NONE', underline = true, })
-- Telescope
hl(0, "TelescopeSelection", { fg = 'NONE', bg = c.ui2_blue })
hl(0, "TelescopeSelectionCaret", { fg = c.red, bg = c.ui2_blue })
hl(0, "TelescopeMatching", { fg = c.info, bg = 'NONE', bold = true, italic = true, })
hl(0, "TelescopeBorder", { fg = c.alt_fg, bg = 'NONE' })
hl(0, "TelescopeNormal", { fg = c.fg, bg = c.menu_bg })
hl(0, "TelescopePromptPrefix", { fg = c.hint, bg = 'NONE' })
hl(0, "TelescopePromptTitle", { fg = c.ui_orange, bg = 'NONE', bold = true, })
hl(0, "TelescopeResultsTitle", { fg = c.ui_orange, bg = 'NONE', bold = true, })
hl(0, "TelescopePreviewTitle", { fg = c.ui_orange, bg = 'NONE', bold = true, })
hl(0, "TelescopePromptCounter", { fg = c.red, bg = 'NONE' })
hl(0, "TelescopePreviewHyphen", { fg = c.red, bg = 'NONE' })
-- NvimTree
hl(0, "NvimTreeFolderIcon", { link = 'Directory' })
hl(0, "NvimTreeIndentMarker", { fg = c.context, bg = 'NONE' })
hl(0, "NvimTreeNormal", { fg = c.fg, bg = c.alt_bg })
hl(0, "NvimTreeVertSplit", { fg = c.alt_bg, bg = c.alt_bg })
hl(0, "NvimTreeWinSeparator", { fg = c.alt_bg, bg = c.alt_bg })
hl(0, "NvimTreeFolderName", { link = 'Directory' })
hl(0, "NvimTreeOpenedFolderName", { fg = c.folder_blue, bg = 'NONE', bold = true, italic = true, })
hl(0, "NvimTreeEmptyFolderName", { fg = c.gray, bg = 'NONE', italic = true, })
hl(0, "NvimTreeGitIgnored", { fg = c.gray, bg = 'NONE', italic = true, })
hl(0, "NvimTreeImageFile", { fg = c.light_gray, bg = 'NONE' })
hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' })
hl(0, "NvimTreeEndOfBuffer", { fg = c.alt_bg, bg = 'NONE' })
hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = c.line })
hl(0, "NvimTreeGitStaged", { fg = c.sign_add_alt, bg = 'NONE' })
hl(0, "NvimTreeGitNew", { fg = c.sign_add_alt, bg = 'NONE' })
hl(0, "NvimTreeGitRenamed", { fg = c.sign_add_alt, bg = 'NONE' })
hl(0, "NvimTreeGitDeleted", { fg = c.sign_delete, bg = 'NONE' })
hl(0, "NvimTreeGitMerge", { fg = c.sign_change_alt, bg = 'NONE' })
hl(0, "NvimTreeGitDirty", { fg = c.sign_change_alt, bg = 'NONE' })
hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' })
hl(0, "NvimTreeRootFolder", { fg = c.fg, bg = 'NONE', bold = true, })
hl(0, "NvimTreeExecFile", { fg = '#9FBA89', bg = 'NONE' })
-- Lir
hl(0, "LirFloatNormal", { fg = c.fg, bg = c.alt_bg })
hl(0, "LirDir", { link = 'Directory' })
hl(0, "LirSymLink", { fg = c.cyan, bg = 'NONE' })
hl(0, "LirEmptyDirText", { fg = c.gray, bg = 'NONE', italic = true, })
-- Buffer
hl(0, "BufferCurrent", { fg = c.fg, bg = c.bg })
hl(0, "BufferCurrentIndex", { fg = c.fg, bg = c.bg })
hl(0, "BufferCurrentMod", { fg = c.info, bg = c.bg })
hl(0, "BufferCurrentSign", { fg = c.hint, bg = c.bg })
hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.bg, bold = true, })
hl(0, "BufferVisible", { fg = c.fg, bg = c.bg })
hl(0, "BufferVisibleIndex", { fg = c.fg, bg = c.bg })
hl(0, "BufferVisibleMod", { fg = c.info, bg = c.bg })
hl(0, "BufferVisibleSign", { fg = c.gray, bg = c.bg })
hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.bg, bold = true, })
hl(0, "BufferInactive", { fg = c.gray, bg = c.alt_bg })
hl(0, "BufferInactiveIndex", { fg = c.gray, bg = c.alt_bg })
hl(0, "BufferInactiveMod", { fg = c.info, bg = c.alt_bg })
hl(0, "BufferInactiveSign", { fg = c.gray, bg = c.alt_bg })
hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.alt_bg, bold = true, })
-- StatusLine
hl(0, "StatusLine", { fg = c.context, bg = c.alt_bg })
hl(0, "StatusLineNC", { fg = c.line, bg = c.bg })
hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' })
hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' })
hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' })
-- IndentBlankline
hl(0, "IndentBlanklineContextChar", { fg = c.context, bg = 'NONE' })
hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = 'NONE', underline = true, })
hl(0, "IndentBlanklineChar", { fg = c.dark_gray, bg = 'NONE' })
-- Dashboard
hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' })
hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' })
hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' })
-- DiffView
hl(0, "DiffViewNormal", { fg = c.gray, bg = c.alt_bg })
hl(0, "DiffviewStatusAdded", { fg = c.sign_add, bg = 'NONE' })
hl(0, "DiffviewStatusModified", { fg = c.sign_change, bg = 'NONE' })
hl(0, "DiffviewStatusRenamed", { fg = c.sign_change, bg = 'NONE' })
hl(0, "DiffviewStatusDeleted", { fg = c.sign_delete, bg = 'NONE' })
hl(0, "DiffviewFilePanelInsertion", { fg = c.sign_add, bg = 'NONE' })
hl(0, "DiffviewFilePanelDeletion", { fg = c.sign_delete, bg = 'NONE' })
hl(0, "DiffviewVertSplit", { fg = 'NONE', bg = c.bg })
-- Bookmarks
hl(0, "BookmarkSign", { fg = c.sign_change, bg = 'NONE' })
hl(0, "BookmarkAnnotationSign", { fg = c.yellow, bg = 'NONE' })
hl(0, "BookmarkLine", { fg = c.ui2_blue, bg = 'NONE' })
hl(0, "BookmarkAnnotationLine", { fg = c.ui2_blue, bg = 'NONE' })
-- Bqf
hl(0, "BqfPreviewBorder", { fg = c.fg, bg = 'NONE' })
hl(0, "BqfPreviewRange", { fg = 'NONE', bg = c.ui2_blue })
hl(0, "BqfSign", { fg = c.ui_orange, bg = 'NONE' })
-- Cmp
hl(0, "CmpItemAbbrDeprecated", { fg = c.gray, bg = 'NONE', strikethrough = true, })
hl(0, "CmpItemAbbrMatch", { fg = c.ui3_blue, bg = 'NONE' })
hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.ui3_blue, bg = 'NONE' })
hl(0, "CmpItemKindFunction", { fg = c.ui_purple, bg = 'NONE' })
hl(0, "CmpItemKindMethod", { fg = c.ui_purple, bg = 'NONE' })
hl(0, "CmpItemKindConstructor", { fg = c.ui_orange, bg = 'NONE' })
hl(0, "CmpItemKindClass", { fg = c.ui_orange, bg = 'NONE' })
hl(0, "CmpItemKindEnum", { fg = c.ui_orange, bg = 'NONE' })
hl(0, "CmpItemKindEvent", { fg = c.info, bg = 'NONE' })
hl(0, "CmpItemKindInterface", { fg = c.ui_orange, bg = 'NONE' })
hl(0, "CmpItemKindStruct", { fg = c.ui_orange, bg = 'NONE' })
hl(0, "CmpItemKindVariable", { fg = c.light_blue, bg = 'NONE' })
hl(0, "CmpItemKindField", { fg = c.light_blue, bg = 'NONE' })
hl(0, "CmpItemKindProperty", { fg = c.light_blue, bg = 'NONE' })
hl(0, "CmpItemKindEnumMember", { fg = c.vivid_blue, bg = 'NONE' })
hl(0, "CmpItemKindConstant", { fg = c.vivid_blue, bg = 'NONE' })
hl(0, "CmpItemKindKeyword", { fg = c.fg, bg = 'NONE' })
hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' })
hl(0, "CmpItemKindValue", { fg = c.fg, bg = 'NONE' })
hl(0, "CmpItemKindUnit", { fg = c.fg, bg = 'NONE' })
hl(0, "CmpItemKindText", { fg = c.fg, bg = 'NONE' })
hl(0, "CmpItemKindSnippet", { fg = c.fg, bg = 'NONE' })
hl(0, "CmpItemKindFile", { fg = c.fg, bg = 'NONE' })
hl(0, "CmpItemKindFolder", { fg = c.fg, bg = 'NONE' })
hl(0, "CmpItemKindColor", { fg = c.fg, bg = 'NONE' })
hl(0, "CmpItemKindReference", { fg = c.light_blue, bg = 'NONE' })
hl(0, "CmpItemKindOperator", { fg = c.fg, bg = 'NONE' })
hl(0, "CmpItemKindTypeParameter", { fg = c.light_blue, bg = 'NONE' })
-- Navic
hl(0, "NavicIconsFile", { link = 'CmpItemKindFile' })
hl(0, "NavicIconsModule", { link = 'CmpItemKindModule' })
hl(0, "NavicIconsNamespace", { link = 'CmpItemKindModule' })
hl(0, "NavicIconsPackage", { link = 'CmpItemKindModule' })
hl(0, "NavicIconsClass", { link = 'CmpItemKindClass' })
hl(0, "NavicIconsMethod", { link = 'CmpItemKindMethod' })
hl(0, "NavicIconsProperty", { link = 'CmpItemKindProperty' })
hl(0, "NavicIconsField", { link = 'CmpItemKindField' })
hl(0, "NavicIconsConstructor", { link = 'CmpItemKindConstructor' })
hl(0, "NavicIconsEnum", { link = 'CmpItemKindEnum' })
hl(0, "NavicIconsInterface", { link = 'CmpItemKindInterface' })
hl(0, "NavicIconsFunction", { link = 'CmpItemKindFunction' })
hl(0, "NavicIconsVariable", { link = 'CmpItemKindVariable' })
hl(0, "NavicIconsConstant", { link = 'CmpItemKindConstant' })
hl(0, "NavicIconsString", { link = 'String' })
hl(0, "NavicIconsNumber", { link = 'Number' })
hl(0, "NavicIconsBoolean", { link = 'Boolean' })
hl(0, "NavicIconsArray", { link = 'CmpItemKindClass' })
hl(0, "NavicIconsObject", { link = 'CmpItemKindClass' })
hl(0, "NavicIconsKey", { link = 'CmpItemKindKeyword' })
hl(0, "NavicIconsKeyword", { link = 'CmpItemKindKeyword' })
hl(0, "NavicIconsNull", { fg = c.blue, bg = 'NONE' })
hl(0, "NavicIconsEnumMember", { link = 'CmpItemKindEnumMember' })
hl(0, "NavicIconsStruct", { link = 'CmpItemKindStruct' })
hl(0, "NavicIconsEvent", { link = 'CmpItemKindEvent' })
hl(0, "NavicIconsOperator", { link = 'CmpItemKindOperator' })
hl(0, "NavicIconsTypeParameter", { link = 'CmpItemKindTypeParameter' })
hl(0, "NavicText", { fg = c.gray, bg = 'NONE' })
hl(0, "NavicSeparator", { fg = c.context, bg = 'NONE' })
-- Packer
hl(0, "packerString", { fg = c.ui_orange, bg = 'NONE' })
hl(0, "packerHash", { fg = c.ui4_blue, bg = 'NONE' })
hl(0, "packerOutput", { fg = c.ui_purple, bg = 'NONE' })
hl(0, "packerRelDate", { fg = c.gray, bg = 'NONE' })
hl(0, "packerSuccess", { fg = c.success_green, bg = 'NONE' })
hl(0, "packerStatusSuccess", { fg = c.ui4_blue, bg = 'NONE' })
-- SymbolOutline
hl(0, "SymbolsOutlineConnector", { fg = c.gray, bg = 'NONE' })
hl(0, "FocusedSymbol", { fg = 'NONE', bg = '#36383F' })
-- Notify
hl(0, "NotifyERRORBorder", { fg = '#8A1F1F', bg = 'NONE' })
hl(0, "NotifyWARNBorder", { fg = '#79491D', bg = 'NONE' })
hl(0, "NotifyINFOBorder", { fg = c.ui_blue, bg = 'NONE' })
hl(0, "NotifyDEBUGBorder", { fg = c.gray, bg = 'NONE' })
hl(0, "NotifyTRACEBorder", { fg = '#4F3552', bg = 'NONE' })
hl(0, "NotifyERRORIcon", { fg = c.error, bg = 'NONE' })
hl(0, "NotifyWARNIcon", { fg = c.warn, bg = 'NONE' })
hl(0, "NotifyINFOIcon", { fg = c.ui4_blue, bg = 'NONE' })
hl(0, "NotifyDEBUGIcon", { fg = c.gray, bg = 'NONE' })
hl(0, "NotifyTRACEIcon", { fg = c.ui_purple, bg = 'NONE' })
hl(0, "NotifyERRORTitle", { fg = c.error, bg = 'NONE' })
hl(0, "NotifyWARNTitle", { fg = c.warn, bg = 'NONE' })
hl(0, "NotifyINFOTitle", { fg = c.ui4_blue, bg = 'NONE' })
hl(0, "NotifyDEBUGTitle", { fg = c.gray, bg = 'NONE' })
hl(0, "NotifyTRACETitle", { fg = c.ui_purple, bg = 'NONE' })
-- hl(0, "NeogitFold", { fg = c.ui_purple, bg = 'NONE' })
-- hl(0, "NeogitStash", { fg = c.ui_purple, bg = 'NONE' })
-- hl(0, "NeogitDiffAdd", { fg = c.ui_purple, bg = 'NONE' })
-- hl(0, "NeogitObjectId", { fg = c.ui_purple, bg = 'NONE' })
-- hl(0, "NeogitRebasing", { fg = c.ui_purple, bg = 'NONE' })
-- hl(0, "NeogitDiffDelete", { fg = c.ui_purple, bg = 'NONE' })
-- hl(0, "NeogitRebaseDone", { fg = c.ui_purple, bg = 'NONE' })
hl(0, "NeogitBranch", { fg = c.ui_purple, bg = 'NONE' })
hl(0, "NeogitRemote", { fg = c.yellow_orange, bg = 'NONE' })
hl(0, "NeogitStashes", { fg = c.ui_purple, bg = 'NONE' })
hl(0, "NeogitUnmergedInto", { fg = c.blue, bg = 'NONE' })
hl(0, "NeogitUnpulledFrom", { fg = c.blue, bg = 'NONE' })
hl(0, "NeogitRecentcommits", { fg = c.blue, bg = 'NONE' })
hl(0, "NeogitStagedchanges", { fg = c.blue, bg = 'NONE' })
hl(0, "NeogitUntrackedfiles", { fg = c.blue, bg = 'NONE' })
hl(0, "NeogitUnmergedchanges", { fg = c.blue, bg = 'NONE' })
hl(0, "NeogitUnpulledchanges", { fg = c.blue, bg = 'NONE' })
hl(0, "NeogitUnstagedchanges", { fg = c.blue, bg = 'NONE' })
-- hl(0, "NoiceCmdline", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCmdlineIcon", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCmdlineIconCmdline", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCmdlineIconFilter", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCmdlineIconHelp", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCmdlineIconIncRename", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCmdlineIconInput", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCmdlineIconLua", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCmdlineIconSearch", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCmdlinePopup", { fg = c.hint, bg = c.hint })
hl(0, "NoiceCmdlinePopupBorder", { fg = c.hint, bg = "NONE" })
-- hl(0, "NoiceCmdlinePopupBorderCmdline", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCmdlinePopupBorderFilter", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCmdlinePopupBorderHelp", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCmdlinePopupBorderIncRename", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCmdlinePopupBorderInput", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCmdlinePopupBorderLua", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCmdlinePopupBorderSearch", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCmdlinePrompt", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCompletionItemKindClass", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCompletionItemKindColor", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCompletionItemKindConstant", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCompletionItemKindConstructor", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCompletionItemKindDefault", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCompletionItemKindEnum", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCompletionItemKindEnumMember ", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCompletionItemKindField", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCompletionItemKindFile", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCompletionItemKindFolder", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCompletionItemKindFunction", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCompletionItemKindInterface", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCompletionItemKindKeyword", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCompletionItemKindMethod", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCompletionItemKindModule", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCompletionItemKindProperty", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCompletionItemKindSnippet", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCompletionItemKindStruct", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCompletionItemKindText", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCompletionItemKindUnit", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCompletionItemKindValue", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCompletionItemKindVariable", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCompletionItemMenu", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCompletionItemWord", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceConfirm", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceConfirmBorder", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceCursor", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceFormatConfirm", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceFormatConfirmDefault", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceFormatDate", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceFormatEvent", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceFormatKind", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceFormatLevelDebug", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceFormatLevelError", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceFormatLevelInfo", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceFormatLevelOff", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceFormatLevelTrace", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceFormatLevelWarn", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceFormatProgressDone", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceFormatProgressTodo", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceFormatTitle", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceLspProgressClient", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceLspProgressSpinner", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceLspProgressTitle", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceMini", { fg = c.hint, bg = c.hint })
-- hl(0, "NoicePopup", { fg = c.hint, bg = c.hint })
-- hl(0, "NoicePopupBorder", { fg = c.hint, bg = c.hint })
-- hl(0, "NoicePopupmenu", { fg = c.hint, bg = c.hint })
-- hl(0, "NoicePopupmenuBorder", { fg = c.hint, bg = c.hint })
-- hl(0, "NoicePopupmenuMatch", { fg = c.hint, bg = c.hint })
-- hl(0, "NoicePopupmenuSelected", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceScrollbar", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceScrollbarThumb", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceSplit", { fg = c.hint, bg = c.hint })
-- hl(0, "NoiceSplitBorder", { fg = c.hint, bg = c.hint })
hl(0, "NoiceVirtualText", { fg = c.hint, bg = c.hint_bg })
-- Noice
-- TreesitterContext
hl(0, "TreesitterContext", { fg = 'NONE', bg = c.alt_bg })
-- Hop
hl(0, "HopNextKey", { fg = '#4ae0ff', bg = 'NONE' })
hl(0, "HopNextKey1", { fg = '#d44eed', bg = 'NONE' })
hl(0, "HopNextKey2", { fg = '#b42ecd', bg = 'NONE' })
hl(0, "HopUnmatched", { fg = c.gray, bg = 'NONE' })
hl(0, "HopPreview", { fg = '#c7ba7d', bg = 'NONE' })
-- Crates
hl(0, "CratesNvimLoading", { fg = c.hint, bg = 'NONE' })
hl(0, "CratesNvimVersion", { fg = c.hint, bg = 'NONE' })
-- Misc
hl(0, "diffAdded", { fg = c.sign_add, bg = 'NONE' })
hl(0, "diffRemoved", { fg = c.sign_delete, bg = 'NONE' })
hl(0, "diffFileId", { fg = c.blue, bg = 'NONE', bold = true, reverse = true, })
hl(0, "diffFile", { fg = c.alt_bg, bg = 'NONE' })
hl(0, "diffNewFile", { fg = c.green, bg = 'NONE' })
hl(0, "diffOldFile", { fg = c.red, bg = 'NONE' })
hl(0, "debugPc", { fg = 'NONE', bg = c.ui5_blue })
hl(0, "debugBreakpoint", { fg = c.red, bg = 'NONE', reverse = true, })
hl(0, "CodiVirtualText", { fg = c.hint, bg = 'NONE' })
hl(0, "SniprunVirtualTextOk", { fg = c.hint, bg = 'NONE' })
hl(0, "SniprunFloatingWinOk", { fg = c.hint, bg = 'NONE' })
hl(0, "SniprunVirtualTextErr", { fg = c.error, bg = 'NONE' })
hl(0, "SniprunFloatingWinErr", { fg = c.error, bg = 'NONE' })
hl(0, "DapBreakpoint", { fg = c.error, bg = 'NONE' })
-- Language
hl(0, "xmlTag", { fg = c.cyan, bg = 'NONE' })
hl(0, "xmlTagName", { fg = c.cyan, bg = 'NONE' })
hl(0, "xmlEndTag", { fg = c.cyan, bg = 'NONE' })
-- hl(0, "yamlPlainScalar", { fg = c.orange, bg = 'NONE' })
-- hl(0, "yamlTSField", { fg = c.blue, bg = 'NONE' })
hl(0, "luaFunc", { fg = c.yellow, bg = 'NONE' })
hl(0, "luaFunction", { fg = c.blue, bg = 'NONE' })
hl(0, "hclTSPunctSpecial", { fg = c.alt_fg, bg = 'NONE' })
hl(0, "htmlH1", { fg = c.fg, bg = 'NONE' })
hl(0, "htmlH2", { fg = c.fg, bg = 'NONE' })
hl(0, "htmlH3", { fg = c.fg, bg = 'NONE' })
hl(0, "htmlH4", { fg = c.fg, bg = 'NONE' })
hl(0, "htmlH5", { fg = c.fg, bg = 'NONE' })
hl(0, "htmlH6", { fg = c.fg, bg = 'NONE' })
hl(0, "htmlHead", { fg = c.fg, bg = 'NONE' })
hl(0, "htmlTitle", { fg = c.fg, bg = 'NONE' })
hl(0, "htmlArg", { fg = c.fg, bg = 'NONE' })
hl(0, "htmlTag", { fg = c.blue, bg = 'NONE' })
hl(0, "htmlTagN", { fg = c.blue, bg = 'NONE' })
hl(0, "htmlTagName", { fg = c.blue, bg = 'NONE' })
hl(0, "htmlComment", { fg = c.green, bg = 'NONE' })
hl(0, "htmlLink", { fg = c.orange, bg = 'NONE', underline = true, })
hl(0, "cssBraces", { fg = c.fg, bg = 'NONE' })
hl(0, "cssInclude", { fg = c.purple, bg = 'NONE' })
hl(0, "cssTagName", { fg = c.yellow, bg = 'NONE' })
hl(0, "cssClassName", { fg = c.yellow, bg = 'NONE' })
hl(0, "cssPseudoClass", { fg = c.yellow, bg = 'NONE' })
hl(0, "cssPseudoClassId", { fg = c.yellow, bg = 'NONE' })
hl(0, "cssPseudoClassLang", { fg = c.yellow, bg = 'NONE' })
hl(0, "cssIdentifier", { fg = c.yellow, bg = 'NONE' })
hl(0, "cssProp", { fg = c.fg, bg = 'NONE' })
hl(0, "cssDefinition", { fg = c.fg, bg = 'NONE' })
hl(0, "cssAttr", { fg = c.orange, bg = 'NONE' })
hl(0, "cssAttrRegion", { fg = c.orange, bg = 'NONE' })
hl(0, "cssColor", { fg = c.orange, bg = 'NONE' })
hl(0, "cssFunction", { fg = c.purple, bg = 'NONE' })
hl(0, "cssFunctionName", { fg = c.yellow, bg = 'NONE' })
hl(0, "cssVendor", { fg = c.orange, bg = 'NONE' })
hl(0, "cssValueNumber", { fg = c.orange, bg = 'NONE' })
hl(0, "cssValueLength", { fg = c.orange, bg = 'NONE' })
hl(0, "cssUnitDecorators", { fg = c.orange, bg = 'NONE' })
hl(0, "cssStyle", { fg = c.fg, bg = 'NONE' })
hl(0, "cssImportant", { fg = c.blue, bg = 'NONE' })
hl(0, "jsonKeyword", { fg = c.blue, bg = 'NONE' })
hl(0, "yamlBlockMappingKey", { fg = c.blue, bg = 'NONE' })
hl(0, "tomlTSProperty", { fg = c.blue, bg = 'NONE' })
hl(0, "zshKSHFunction", { link = "Function" })
hl(0, "zshVariableDef", { link = "Constant" })
end
return theme