-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmonokai-pro.lua
1251 lines (1246 loc) · 73 KB
/
monokai-pro.lua
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
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- Made with 'mini.colors' module of https://github.com/echasnovski/mini.nvim
if vim.g.colors_name ~= nil then vim.cmd('highlight clear') end
vim.g.colors_name = "monokai-pro"
-- Highlight groups
local hi = vim.api.nvim_set_hl
hi(0, "@_isinstance", { fg = "#9fd149" })
hi(0, "@annotation", { fg = "#72c8d9", italic = true })
hi(0, "@attribute.builtin", { link = "Special" })
hi(0, "@attribute.python", { fg = "#9fd149" })
hi(0, "@boolean", { fg = "#9e7ae1" })
hi(0, "@character.special", { link = "SpecialChar" })
hi(0, "@comment.documentation.lua", { fg = "#72c8d9" })
hi(0, "@comment.error", { link = "DiagnosticError" })
hi(0, "@comment.note", { link = "DiagnosticInfo" })
hi(0, "@comment.todo", { link = "Todo" })
hi(0, "@comment.warning", { link = "DiagnosticWarn" })
hi(0, "@conceal.markdown", { bg = "#1d1e19" })
hi(0, "@conditional", { fg = "#da3769" })
hi(0, "@conditional.lua", { fg = "#da3769" })
hi(0, "@constant.builtin", { fg = "#9e7ae1" })
hi(0, "@constant.cpp", { fg = "#72c8d9" })
hi(0, "@constant.macro.cpp", { fg = "#da3769" })
hi(0, "@constant.python", { fg = "#9e7ae1" })
hi(0, "@constructor", { fg = "#da3769" })
hi(0, "@constructor.python", { fg = "#9fd149" })
hi(0, "@diff.delta", { link = "Changed" })
hi(0, "@diff.minus", { link = "Removed" })
hi(0, "@diff.plus", { link = "Added" })
hi(0, "@exception.python", { fg = "#da3769", italic = true })
hi(0, "@field", { fg = "#da3769" })
hi(0, "@field.lua", { fg = "#eff1e6" })
hi(0, "@field.python", { fg = "#eff1e6" })
hi(0, "@function", { fg = "#9fd149" })
hi(0, "@function.builtin", { link = "Special" })
hi(0, "@function.builtin.lua", { fg = "#9fd149" })
hi(0, "@function.builtin.python", { fg = "#72c8d9", italic = true })
hi(0, "@function.call.bash", { fg = "#9fd149" })
hi(0, "@function.macro.latex", { fg = "#9fd149" })
hi(0, "@function.method.call", { fg = "#9fd149" })
hi(0, "@function.scss", { fg = "#72c8d9" })
hi(0, "@ibl.indent.char.1", { fg = "#5f5f56", nocombine = true })
hi(0, "@ibl.indent.char.2", { fg = "#3c4a4a", nocombine = true })
hi(0, "@ibl.indent.char.3", { fg = "#433f43", nocombine = true })
hi(0, "@ibl.indent.char.4", { fg = "#323332", nocombine = true })
hi(0, "@ibl.scope.char.1", { bg = "#272822", fg = "#4b4b4b", nocombine = true })
hi(0, "@ibl.scope.underline.1", { sp = "#57584f", underline = true })
hi(0, "@ibl.whitespace.char.1", { fg = "#4b4b4b", nocombine = true })
hi(0, "@include", { fg = "#da3769" })
hi(0, "@keyword", { fg = "#da3769", italic = true })
hi(0, "@keyword.cpp", { fg = "#72c8d9", italic = true })
hi(0, "@keyword.dockerfile", { fg = "#da3769" })
hi(0, "@keyword.function", { bold = true, fg = "#72c8d9", italic = true })
hi(0, "@keyword.function.go", { fg = "#da3769" })
hi(0, "@keyword.function.lua", { fg = "#da3769" })
hi(0, "@keyword.function.python", { fg = "#72c8d9", italic = true })
hi(0, "@keyword.import", { fg = "#da3769" })
hi(0, "@keyword.import.python", { fg = "#da3769" })
hi(0, "@keyword.lua", { fg = "#da3769", italic = true })
hi(0, "@keyword.operator", { fg = "#da3769" })
hi(0, "@keyword.python", { fg = "#72c8d9", italic = true })
hi(0, "@keyword.return", { fg = "#da3769" })
hi(0, "@keyword.scss", { fg = "#da3769" })
hi(0, "@lsp.mod.deprecated", { strikethrough = true })
hi(0, "@lsp.type.class", { link = "Structure" })
hi(0, "@lsp.type.class.dockerfile", { fg = "#72c8d9" })
hi(0, "@lsp.type.comment", { link = "@comment" })
hi(0, "@lsp.type.decorator", { link = "Function" })
hi(0, "@lsp.type.enum", { link = "Structure" })
hi(0, "@lsp.type.enumMember", { link = "@constant" })
hi(0, "@lsp.type.enumNumber", { link = "Constant" })
hi(0, "@lsp.type.event", { link = "@type" })
hi(0, "@lsp.type.function", { link = "Function" })
hi(0, "@lsp.type.interface", { link = "Structure" })
hi(0, "@lsp.type.keyword", { link = "@keyword" })
hi(0, "@lsp.type.macro", { link = "Macro" })
hi(0, "@lsp.type.method", { link = "Function" })
hi(0, "@lsp.type.modifier", { link = "@type.qualifier" })
hi(0, "@lsp.type.namespace", { link = "Identifier" })
hi(0, "@lsp.type.namespace.cpp", { fg = "#9fd149" })
hi(0, "@lsp.type.namespace.go", { fg = "#72c8d9" })
hi(0, "@lsp.type.number", { link = "@number" })
hi(0, "@lsp.type.operator", { link = "@operator" })
hi(0, "@lsp.type.parameter", { fg = "#e48f38", italic = true })
hi(0, "@lsp.type.parameter.dockerfile", {})
hi(0, "@lsp.type.property", { link = "Identifier" })
hi(0, "@lsp.type.regexp", { link = "@string.regexp" })
hi(0, "@lsp.type.string", { link = "@string" })
hi(0, "@lsp.type.struct", { link = "Structure" })
hi(0, "@lsp.type.type", { fg = "#72c8d9" })
hi(0, "@lsp.type.typeParameter", { link = "Typedef" })
hi(0, "@lsp.type.variable", { link = "Identifier" })
hi(0, "@lsp.typemod.class.defaultLibrary", { fg = "#eff1e6" })
hi(0, "@lsp.typemod.function.declaration", { fg = "#9fd149" })
hi(0, "@lsp.typemod.function.defaultLibrary", { fg = "#e48f38" })
hi(0, "@lsp.typemod.keyword.documentation", { fg = "#72c8d9", italic = true })
hi(0, "@lsp.typemod.parameter.declaration", { fg = "#e48f38", italic = true })
hi(0, "@lsp.typemod.variable.defaultLibrary", { fg = "#e48f38" })
hi(0, "@lsp.typemod.variable.global.lua", { fg = "#e48f38" })
hi(0, "@lsp.typemod.variable.readonly", { fg = "#9e7ae1" })
hi(0, "@markup.heading", { link = "Title" })
hi(0, "@markup.heading.1.markdown", { fg = "#d4cd80" })
hi(0, "@markup.heading.1.marker.markdown", { fg = "#848484" })
hi(0, "@markup.heading.2.markdown", { fg = "#d4cd80" })
hi(0, "@markup.heading.2.marker.markdown", { fg = "#848484" })
hi(0, "@markup.heading.3.markdown", { fg = "#d4cd80" })
hi(0, "@markup.heading.3.marker.markdown", { fg = "#848484" })
hi(0, "@markup.heading.4.markdown", { fg = "#d4cd80" })
hi(0, "@markup.heading.4.marker.markdown", { fg = "#848484" })
hi(0, "@markup.heading.5.markdown", { fg = "#d4cd80" })
hi(0, "@markup.heading.5.marker.markdown", { fg = "#848484" })
hi(0, "@markup.heading.6.markdown", { fg = "#d4cd80" })
hi(0, "@markup.heading.6.marker.markdown", { fg = "#848484" })
hi(0, "@markup.heading.7.markdown", { fg = "#d4cd80" })
hi(0, "@markup.heading.7.marker.markdown", { fg = "#848484" })
hi(0, "@markup.heading.8.markdown", { fg = "#d4cd80" })
hi(0, "@markup.heading.8.marker.markdown", { fg = "#848484" })
hi(0, "@markup.heading.9.markdown", { fg = "#d4cd80" })
hi(0, "@markup.heading.9.marker.markdown", { fg = "#848484" })
hi(0, "@markup.italic.markdown_inline", { italic = true })
hi(0, "@markup.link", { link = "Underlined" })
hi(0, "@markup.link.label.markdown_inline", { fg = "#da3769" })
hi(0, "@markup.link.url.markdown_inline", { fg = "#9fd149", underline = true })
hi(0, "@markup.raw.block.markdown", { bg = "#1d1e19" })
hi(0, "@markup.raw.delimiter.markdown", { bg = "#1d1e19", fg = "#848484" })
hi(0, "@markup.raw.markdown_inline", { bg = "#57584f", fg = "#eff1e6" })
hi(0, "@markup.strong.markdown_inline", { bold = true })
hi(0, "@method.call", { fg = "#9fd149" })
hi(0, "@method.python", { fg = "#9fd149" })
hi(0, "@module.builtin", { link = "Special" })
hi(0, "@module.go", { fg = "#eff1e6" })
hi(0, "@namespace.cpp", { fg = "#9fd149" })
hi(0, "@namespace.lua", { fg = "#da3769" })
hi(0, "@none.markdown", { bg = "#1d1e19" })
hi(0, "@number", { fg = "#9e7ae1" })
hi(0, "@number.float", { link = "Float" })
hi(0, "@number.scss", { fg = "#9e7ae1" })
hi(0, "@operator", { fg = "#da3769" })
hi(0, "@operator.cpp", { fg = "#da3769" })
hi(0, "@operator.python", { fg = "#da3769" })
hi(0, "@parameter", { fg = "#e48f38", italic = true })
hi(0, "@parameter.bash", { fg = "#eff1e6" })
hi(0, "@parameter.lua", { fg = "#e48f38", italic = true })
hi(0, "@parameter.python", { fg = "#e48f38", italic = true })
hi(0, "@property", { fg = "#eff1e6" })
hi(0, "@property.scss", { fg = "#9fd149" })
hi(0, "@punctuation.bracket", { fg = "#da3769" })
hi(0, "@punctuation.delimiter", { fg = "#848484" })
hi(0, "@punctuation.delimiter.cpp", { fg = "#848484" })
hi(0, "@punctuation.special", { fg = "#da3769" })
hi(0, "@punctuation.special.latex", { fg = "#da3769" })
hi(0, "@punctuation.special.markdown", { fg = "#848484" })
hi(0, "@repeat", { fg = "#da3769" })
hi(0, "@string.documentation", { fg = "#636363" })
hi(0, "@string.escape", { fg = "#9e7ae1" })
hi(0, "@string.escape.go", { fg = "#9e7ae1" })
hi(0, "@string.escape.python", { fg = "#9e7ae1" })
hi(0, "@string.latex", { fg = "#72c8d9" })
hi(0, "@string.regexp", { link = "@string.special" })
hi(0, "@string.scss", { fg = "#e48f38", italic = true })
hi(0, "@string.special", { link = "SpecialChar" })
hi(0, "@string.special.url", { link = "Underlined" })
hi(0, "@tag", { fg = "#da3769" })
hi(0, "@tag.attribute", { fg = "#72c8d9", italic = true })
hi(0, "@tag.builtin", { link = "Special" })
hi(0, "@tag.delimiter", { fg = "#848484" })
hi(0, "@text.emphasis.latex", { italic = true })
hi(0, "@text.emphasis.markdown_inline", { fg = "#eff1e6", italic = true })
hi(0, "@text.environment.latex", { fg = "#9fd149" })
hi(0, "@text.environment.name.latex", { fg = "#e48f38", italic = true })
hi(0, "@text.literal.block.markdown", { bg = "#272822" })
hi(0, "@text.literal.markdown_inline", { bg = "#57584f", fg = "#eff1e6" })
hi(0, "@text.math.latex", { fg = "#9e7ae1" })
hi(0, "@text.quote.markdown", { bg = "#3b3c35", fg = "#eff1e6" })
hi(0, "@text.reference.markdown_inline", { fg = "#da3769" })
hi(0, "@text.strong.latex", { bold = true })
hi(0, "@text.strong.markdown_inline", { bold = true, fg = "#eff1e6" })
hi(0, "@text.uri.markdown_inline", { fg = "#9fd149", sp = "#a6e22e", underline = true })
hi(0, "@type", { fg = "#72c8d9" })
hi(0, "@type.builtin", { fg = "#72c8d9", italic = true })
hi(0, "@type.cpp", { fg = "#e48f38", italic = true })
hi(0, "@type.python", { fg = "#72c8d9" })
hi(0, "@type.qualifier", { fg = "#da3769", italic = true })
hi(0, "@type.scss", { fg = "#72c8d9" })
hi(0, "@variable", { fg = "#eff1e6" })
hi(0, "@variable.builtin", { fg = "#b2b2b2", italic = true })
hi(0, "@variable.builtin.python", { fg = "#b2b2b2", italic = true })
hi(0, "@variable.cpp", { fg = "#eff1e6" })
hi(0, "@variable.lua", { fg = "#eff1e6" })
hi(0, "@variable.member", { fg = "#9e7ae1" })
hi(0, "@variable.member.python", { fg = "#72c8d9" })
hi(0, "@variable.parameter", { fg = "#e48f38", italic = true })
hi(0, "@variable.parameter.builtin", { link = "Special" })
hi(0, "@variable.parameter.python", { fg = "#e48f38", italic = true })
hi(0, "@variable.python", { fg = "#eff1e6" })
hi(0, "@varibale.builtin.python", { fg = "#e48f38", italic = true })
hi(0, "Added", { ctermfg = 10, fg = "#b2e3bb" })
hi(0, "AlphaButton", { fg = "#9e7ae1" })
hi(0, "AlphaFooter", { fg = "#e48f38" })
hi(0, "AlphaHeader", { fg = "#d4cd80" })
hi(0, "Beacon", { bg = "#fd971f" })
hi(0, "Bold", { bold = true })
hi(0, "Boolean", { fg = "#9e7ae1" })
hi(0, "BreadcrumbIconsArray", { fg = "#da3769" })
hi(0, "BreadcrumbIconsBoolean", { fg = "#da3769" })
hi(0, "BreadcrumbIconsClass", { fg = "#72c8d9" })
hi(0, "BreadcrumbIconsColor", { fg = "#9e7ae1" })
hi(0, "BreadcrumbIconsConstant", { fg = "#9e7ae1" })
hi(0, "BreadcrumbIconsConstructor", { fg = "#9fd149" })
hi(0, "BreadcrumbIconsEnum", { fg = "#e48f38" })
hi(0, "BreadcrumbIconsEnumMember", { fg = "#e48f38" })
hi(0, "BreadcrumbIconsEvent", { fg = "#e48f38" })
hi(0, "BreadcrumbIconsField", { fg = "#e48f38" })
hi(0, "BreadcrumbIconsFile", { fg = "#b2b2b2" })
hi(0, "BreadcrumbIconsFolder", { fg = "#b2b2b2" })
hi(0, "BreadcrumbIconsFunction", { fg = "#9fd149" })
hi(0, "BreadcrumbIconsInterface", { fg = "#72c8d9" })
hi(0, "BreadcrumbIconsKey", { fg = "#e48f38" })
hi(0, "BreadcrumbIconsKeyword", { fg = "#da3769" })
hi(0, "BreadcrumbIconsMethod", { fg = "#9fd149" })
hi(0, "BreadcrumbIconsModule", { fg = "#72c8d9" })
hi(0, "BreadcrumbIconsNamespace", { fg = "#72c8d9" })
hi(0, "BreadcrumbIconsNull", { fg = "#9e7ae1" })
hi(0, "BreadcrumbIconsNumber", { fg = "#9e7ae1" })
hi(0, "BreadcrumbIconsObject", { fg = "#72c8d9" })
hi(0, "BreadcrumbIconsOperator", { fg = "#da3769" })
hi(0, "BreadcrumbIconsPackage", { fg = "#9e7ae1" })
hi(0, "BreadcrumbIconsProperty", { fg = "#e48f38" })
hi(0, "BreadcrumbIconsReference", { fg = "#9e7ae1" })
hi(0, "BreadcrumbIconsSnippet", { fg = "#9fd149" })
hi(0, "BreadcrumbIconsString", { fg = "#d4cd80" })
hi(0, "BreadcrumbIconsStruct", { fg = "#da3769" })
hi(0, "BreadcrumbIconsText", { fg = "#d4cd80" })
hi(0, "BreadcrumbIconsTypeParameter", { fg = "#e48f38" })
hi(0, "BreadcrumbIconsUnit", { fg = "#9e7ae1" })
hi(0, "BreadcrumbIconsVariable", { fg = "#72c8d9" })
hi(0, "BufferLineBackground", { bg = "#363731", fg = "#a1a1a1", sp = "#272822" })
hi(0, "BufferLineBufferSelected", { bg = "#272822", fg = "#d4cd80", sp = "#e6db74", underline = true })
hi(0, "BufferLineBufferVisible", { bg = "#272822", fg = "#c4c4c4", sp = "#272822" })
hi(0, "BufferLineCloseButton", { bg = "#363731", fg = "#eff1e6", sp = "#272822" })
hi(0, "BufferLineCloseButtonSelected", { bg = "#272822", fg = "#d4cd80", sp = "#e6db74", underline = true })
hi(0, "BufferLineCloseButtonVisible", { bg = "#272822", fg = "#eff1e6", sp = "#272822" })
hi(0, "BufferLineDevIconDefault", { bg = "#363731", fg = "#6a7072", sp = "#272822" })
hi(0, "BufferLineDevIconDefaultInactive", { bg = "#272822", fg = "#6a7072", sp = "#272822" })
hi(0, "BufferLineDevIconDefaultSelected", { bg = "#272822", fg = "#6a7072", sp = "#e6db74", underline = true })
hi(0, "BufferLineDevIconLua", { bg = "#363731", fg = "#5792b5", sp = "#272822" })
hi(0, "BufferLineDevIconLuaInactive", { bg = "#272822", fg = "#5792b5", sp = "#272822" })
hi(0, "BufferLineDevIconLuaSelected", { bg = "#272822", fg = "#5792b5", sp = "#e6db74", underline = true })
hi(0, "BufferLineDuplicate", { bg = "#363731", fg = "#717171", sp = "#272822" })
hi(0, "BufferLineDuplicateSelected", { bg = "#272822", fg = "#8a8657", sp = "#e6db74", underline = true })
hi(0, "BufferLineDuplicateVisible", { bg = "#272822", fg = "#818181", sp = "#272822" })
hi(0, "BufferLineError", { bg = "#363731", fg = "#912f4e", sp = "#272822" })
hi(0, "BufferLineErrorDiagnostic", { bg = "#363731", bold = true, fg = "#752e44", sp = "#272822" })
hi(0, "BufferLineErrorDiagnosticSelected", { bg = "#272822", bold = true, fg = "#a92d55", sp = "#e6db74", underline = true })
hi(0, "BufferLineErrorDiagnosticVisible", { bg = "#272822", bold = true, fg = "#8c2848", sp = "#272822" })
hi(0, "BufferLineErrorSelected", { bg = "#272822", fg = "#da3769", sp = "#e6db74", underline = true })
hi(0, "BufferLineErrorVisible", { bg = "#272822", fg = "#b42f59", sp = "#272822" })
hi(0, "BufferLineFill", { bg = "#1d1e19", sp = "#272822" })
hi(0, "BufferLineHint", { link = "BufferLineInfo" })
hi(0, "BufferLineHintDiagnostic", { link = "BufferLineInfoDiagnostic" })
hi(0, "BufferLineHintDiagnosticSelected", { link = "BufferLineInfoDiagnosticSelected" })
hi(0, "BufferLineHintDiagnosticVisible", { link = "BufferLineInfoDiagnosticVisible" })
hi(0, "BufferLineHintSelected", { link = "BufferLineInfoSelected" })
hi(0, "BufferLineHintVisible", { link = "BufferLineInfoVisible" })
hi(0, "BufferLineIndicator", { bg = "#363731", fg = "#2a2a2a", sp = "#272822" })
hi(0, "BufferLineIndicatorSelected", { bg = "#272822", fg = "#d4cd80", sp = "#e6db74", underline = true })
hi(0, "BufferLineIndicatorVisible", { bg = "#272822", fg = "#1b1b1a", sp = "#272822" })
hi(0, "BufferLineInfo", { bg = "#363731", fg = "#558891", sp = "#272822" })
hi(0, "BufferLineInfoDiagnostic", { bg = "#363731", bold = true, fg = "#4c7075", sp = "#272822" })
hi(0, "BufferLineInfoDiagnosticSelected", { bg = "#272822", bold = true, fg = "#5d9ca7", sp = "#e6db74", underline = true })
hi(0, "BufferLineInfoDiagnosticVisible", { bg = "#272822", bold = true, fg = "#4f838b", sp = "#272822" })
hi(0, "BufferLineInfoSelected", { bg = "#272822", fg = "#72c8d9", sp = "#e6db74", underline = true })
hi(0, "BufferLineInfoVisible", { bg = "#272822", fg = "#61a4b1", sp = "#272822" })
hi(0, "BufferLineModified", { bg = "#363731", fg = "#eff1e6", sp = "#272822" })
hi(0, "BufferLineModifiedSelected", { bg = "#272822", fg = "#d4cd80", sp = "#e6db74", underline = true })
hi(0, "BufferLineModifiedVisible", { bg = "#272822", fg = "#eff1e6", sp = "#272822" })
hi(0, "BufferLineOffsetSeparator", { link = "NeoTreeWinSeparator" })
hi(0, "BufferLinePick", { bg = "#363731", fg = "#da3769", sp = "#272822" })
hi(0, "BufferLinePickSelected", { bg = "#272822", fg = "#da3769", sp = "#e6db74", underline = true })
hi(0, "BufferLinePickVisible", { bg = "#272822", fg = "#da3769", sp = "#272822" })
hi(0, "BufferLineSeparator", { bg = "#363731", fg = "#101010", sp = "#272822" })
hi(0, "BufferLineSeparatorSelected", { bg = "#272822", fg = "#101010", sp = "#e6db74", underline = true })
hi(0, "BufferLineSeparatorVisible", { bg = "#272822", fg = "#101010", sp = "#272822" })
hi(0, "BufferLineTab", { bg = "#363731", fg = "#a1a1a1", sp = "#272822" })
hi(0, "BufferLineTabClose", { bg = "#1d1e19", fg = "#101010", sp = "#272822" })
hi(0, "BufferLineTabSelected", { bg = "#272822", fg = "#d4cd80", sp = "#e6db74", underline = true })
hi(0, "BufferLineTabSeparator", { bg = "#363731", fg = "#2a2a2a", sp = "#272822" })
hi(0, "BufferLineTabSeparatorSelected", { bg = "#272822", fg = "#1b1b1a", sp = "#e6db74", underline = true })
hi(0, "BufferLineWarning", { bg = "#363731", fg = "#98662f", sp = "#272822" })
hi(0, "BufferLineWarningDiagnostic", { bg = "#363731", fg = "#7c582c", sp = "#272822" })
hi(0, "BufferLineWarningDiagnosticSelected", { bg = "#272822", fg = "#b1722d", sp = "#e6db74", underline = true })
hi(0, "BufferLineWarningDiagnosticVisible", { bg = "#272822", fg = "#926028", sp = "#272822" })
hi(0, "BufferLineWarningSelected", { bg = "#272822", fg = "#e48f38", sp = "#e6db74", underline = true })
hi(0, "BufferLineWarningVisible", { bg = "#272822", fg = "#bb7830", sp = "#272822" })
hi(0, "Changed", { ctermfg = 14, fg = "#94e6e5" })
hi(0, "Character", { fg = "#9e7ae1" })
hi(0, "ChatGPTCompletion", { fg = "#8b8d94", italic = true })
hi(0, "ChatGPTMessageAction", { bg = "#1d4c61", fg = "#f1f1f1", italic = true })
hi(0, "ChatGPTQuestion", { fg = "#a9b1e6", italic = true })
hi(0, "ChatGPTTotalTokens", { bg = "#444444", fg = "#f1f1f1" })
hi(0, "ChatGPTTotalTokensBorder", { fg = "#383838" })
hi(0, "ChatGPTWelcome", { fg = "#8b8d94", italic = true })
hi(0, "CmpItemAbbr", { fg = "#b2b2b2" })
hi(0, "CmpItemAbbrDefault", { fg = "#b2b2b2" })
hi(0, "CmpItemAbbrDeprecated", { fg = "#b2b2b2", strikethrough = true })
hi(0, "CmpItemAbbrDeprecatedDefault", { fg = "#636363" })
hi(0, "CmpItemAbbrMatch", { bold = true, fg = "#eff1e6" })
hi(0, "CmpItemAbbrMatchDefault", { fg = "#b2b2b2" })
hi(0, "CmpItemAbbrMatchFuzzy", { link = "CmpItemAbbrMatch" })
hi(0, "CmpItemAbbrMatchFuzzyDefault", { fg = "#b2b2b2" })
hi(0, "CmpItemKindArray", { fg = "#da3769" })
hi(0, "CmpItemKindBoolean", { fg = "#da3769" })
hi(0, "CmpItemKindClass", { fg = "#72c8d9" })
hi(0, "CmpItemKindClassDefault", { link = "CmpItemKind" })
hi(0, "CmpItemKindColor", { fg = "#9e7ae1" })
hi(0, "CmpItemKindColorDefault", { link = "CmpItemKind" })
hi(0, "CmpItemKindConstant", { fg = "#9e7ae1" })
hi(0, "CmpItemKindConstantDefault", { link = "CmpItemKind" })
hi(0, "CmpItemKindConstructor", { fg = "#9fd149" })
hi(0, "CmpItemKindConstructorDefault", { link = "CmpItemKind" })
hi(0, "CmpItemKindDefault", { fg = "#e48f38" })
hi(0, "CmpItemKindEnum", { fg = "#e48f38" })
hi(0, "CmpItemKindEnumDefault", { link = "CmpItemKind" })
hi(0, "CmpItemKindEnumMember", { fg = "#e48f38" })
hi(0, "CmpItemKindEnumMemberDefault", { link = "CmpItemKind" })
hi(0, "CmpItemKindEvent", { fg = "#e48f38" })
hi(0, "CmpItemKindEventDefault", { link = "CmpItemKind" })
hi(0, "CmpItemKindField", { fg = "#e48f38" })
hi(0, "CmpItemKindFieldDefault", { link = "CmpItemKind" })
hi(0, "CmpItemKindFile", { fg = "#b2b2b2" })
hi(0, "CmpItemKindFileDefault", { link = "CmpItemKind" })
hi(0, "CmpItemKindFolder", { fg = "#b2b2b2" })
hi(0, "CmpItemKindFolderDefault", { link = "CmpItemKind" })
hi(0, "CmpItemKindFunction", { fg = "#9fd149" })
hi(0, "CmpItemKindFunctionDefault", { link = "CmpItemKind" })
hi(0, "CmpItemKindInterface", { fg = "#72c8d9" })
hi(0, "CmpItemKindInterfaceDefault", { link = "CmpItemKind" })
hi(0, "CmpItemKindKey", { fg = "#e48f38" })
hi(0, "CmpItemKindKeyword", { fg = "#da3769" })
hi(0, "CmpItemKindKeywordDefault", { link = "CmpItemKind" })
hi(0, "CmpItemKindMethod", { fg = "#9fd149" })
hi(0, "CmpItemKindMethodDefault", { link = "CmpItemKind" })
hi(0, "CmpItemKindModule", { fg = "#72c8d9" })
hi(0, "CmpItemKindModuleDefault", { link = "CmpItemKind" })
hi(0, "CmpItemKindNamespace", { fg = "#72c8d9" })
hi(0, "CmpItemKindNull", { fg = "#9e7ae1" })
hi(0, "CmpItemKindNumber", { fg = "#9e7ae1" })
hi(0, "CmpItemKindObject", { fg = "#72c8d9" })
hi(0, "CmpItemKindOperator", { fg = "#da3769" })
hi(0, "CmpItemKindOperatorDefault", { link = "CmpItemKind" })
hi(0, "CmpItemKindPackage", { fg = "#9e7ae1" })
hi(0, "CmpItemKindProperty", { fg = "#e48f38" })
hi(0, "CmpItemKindPropertyDefault", { link = "CmpItemKind" })
hi(0, "CmpItemKindReference", { fg = "#9e7ae1" })
hi(0, "CmpItemKindReferenceDefault", { link = "CmpItemKind" })
hi(0, "CmpItemKindSnippet", { fg = "#9fd149" })
hi(0, "CmpItemKindSnippetDefault", { link = "CmpItemKind" })
hi(0, "CmpItemKindString", { fg = "#d4cd80" })
hi(0, "CmpItemKindStruct", { fg = "#da3769" })
hi(0, "CmpItemKindStructDefault", { link = "CmpItemKind" })
hi(0, "CmpItemKindText", { fg = "#d4cd80" })
hi(0, "CmpItemKindTextDefault", { link = "CmpItemKind" })
hi(0, "CmpItemKindTypeParameter", { fg = "#e48f38" })
hi(0, "CmpItemKindTypeParameterDefault", { link = "CmpItemKind" })
hi(0, "CmpItemKindUnit", { fg = "#9e7ae1" })
hi(0, "CmpItemKindUnitDefault", { link = "CmpItemKind" })
hi(0, "CmpItemKindValueDefault", { link = "CmpItemKind" })
hi(0, "CmpItemKindVariable", { fg = "#72c8d9" })
hi(0, "CmpItemKindVariableDefault", { link = "CmpItemKind" })
hi(0, "CmpItemMenu", { fg = "#a4a4a4" })
hi(0, "CmpItemMenuDefault", { fg = "#b2b2b2" })
hi(0, "CocGitAddedSign", { bg = "#272822", fg = "#9fd149" })
hi(0, "CocGitChangeRemovedSign", { bg = "#272822", fg = "#da3769" })
hi(0, "CocGitChangedSign", { bg = "#272822", fg = "#d4cd80" })
hi(0, "CocGitRemovedSign", { bg = "#272822", fg = "#da3769" })
hi(0, "CocGitTopRemovedSign", { bg = "#272822", fg = "#da3769" })
hi(0, "ColorColumn", { bg = "#292b1f" })
hi(0, "Comment", { fg = "#636363", italic = true })
hi(0, "Conceal", { bg = "#272822", fg = "#636363" })
hi(0, "Conditional", { fg = "#da3769" })
hi(0, "Constant", { fg = "#9e7ae1" })
hi(0, "CratesNvimPopupEnabled", { ctermfg = 2, fg = "#33994a" })
hi(0, "CratesNvimPopupPillBorder", { ctermfg = 242, fg = "#2e2e2e" })
hi(0, "CratesNvimPopupPillText", { bg = "#3a3a3a", ctermbg = 242, ctermfg = 15, fg = "#d2d2d2" })
hi(0, "CratesNvimPopupTransitive", { ctermfg = 4, fg = "#2e7da2" })
hi(0, "CurSearch", { bg = "#fce094", ctermbg = 11, ctermfg = 0, fg = "#000000" })
hi(0, "Cursor", { bg = "#fdfff1", fg = "#eff1e6" })
hi(0, "CursorColumn", { bg = "#2b2e1c" })
hi(0, "CursorLine", { bg = "#31322c" })
hi(0, "CursorLineFold", { bg = "#272822", fg = "#eff1e6" })
hi(0, "CursorLineNr", { bg = "#272822", bold = true, fg = "#b2b2b2" })
hi(0, "DapUIBreakpointsCurrentLine", { bold = true, fg = "#a5ec73" })
hi(0, "DapUIBreakpointsDisabledLine", { fg = "#363636" })
hi(0, "DapUIBreakpointsInfo", { fg = "#a5ec73" })
hi(0, "DapUIBreakpointsPath", { fg = "#43dfe2" })
hi(0, "DapUIDecoration", { fg = "#43dfe2" })
hi(0, "DapUIFloatBorder", { fg = "#43dfe2" })
hi(0, "DapUILineNumber", { fg = "#43dfe2" })
hi(0, "DapUIModifiedValue", { bold = true, fg = "#43dfe2" })
hi(0, "DapUINormalNC", { bg = "#272822", fg = "#eff1e6" })
hi(0, "DapUIPlayPause", { fg = "#a5ec73" })
hi(0, "DapUIPlayPauseNC", { bg = "#07080d", fg = "#a5ec73" })
hi(0, "DapUIRestart", { fg = "#a5ec73" })
hi(0, "DapUIRestartNC", { bg = "#07080d", fg = "#a5ec73" })
hi(0, "DapUIScope", { fg = "#43dfe2" })
hi(0, "DapUISource", { fg = "#c07fe3" })
hi(0, "DapUIStepBack", { fg = "#43dfe2" })
hi(0, "DapUIStepBackNC", { bg = "#07080d", fg = "#43dfe2" })
hi(0, "DapUIStepInto", { fg = "#43dfe2" })
hi(0, "DapUIStepIntoNC", { bg = "#07080d", fg = "#43dfe2" })
hi(0, "DapUIStepOut", { fg = "#43dfe2" })
hi(0, "DapUIStepOutNC", { bg = "#07080d", fg = "#43dfe2" })
hi(0, "DapUIStepOver", { fg = "#43dfe2" })
hi(0, "DapUIStepOverNC", { bg = "#07080d", fg = "#43dfe2" })
hi(0, "DapUIStop", { fg = "#d92660" })
hi(0, "DapUIStopNC", { bg = "#07080d", fg = "#d92660" })
hi(0, "DapUIStoppedThread", { fg = "#43dfe2" })
hi(0, "DapUIThread", { fg = "#a5ec73" })
hi(0, "DapUIType", { fg = "#c07fe3" })
hi(0, "DapUIUnavailable", { fg = "#363636" })
hi(0, "DapUIUnavailableNC", { bg = "#07080d", fg = "#363636" })
hi(0, "DapUIWatchesEmpty", { fg = "#d92660" })
hi(0, "DapUIWatchesError", { fg = "#d92660" })
hi(0, "DapUIWatchesValue", { fg = "#a5ec73" })
hi(0, "DapUIWinSelect", { bold = true, ctermfg = 14, fg = "#43dfe2" })
hi(0, "DashboardConfiguration", { fg = "#eff1e6" })
hi(0, "DashboardDesc", { fg = "#b2b2b2" })
hi(0, "DashboardFiles", { fg = "#e48f38" })
hi(0, "DashboardFooter", { fg = "#9fd149" })
hi(0, "DashboardHeader", { fg = "#d4cd80" })
hi(0, "DashboardIcon", { fg = "#e48f38" })
hi(0, "DashboardKey", { fg = "#72c8d9" })
hi(0, "DashboardLazy", { fg = "#72c8d9" })
hi(0, "DashboardMruTitle", { fg = "#d4cd80" })
hi(0, "DashboardProject", { fg = "#e48f38" })
hi(0, "DashboardProjectTitle", { fg = "#d4cd80" })
hi(0, "DashboardQuit", { fg = "#da3769" })
hi(0, "DashboardRecent", { fg = "#9e7ae1" })
hi(0, "DashboardServer", { fg = "#d4cd80" })
hi(0, "DashboardSession", { fg = "#9fd149" })
hi(0, "DashboardShortcut", { fg = "#9e7ae1" })
hi(0, "Define", { fg = "#da3769" })
hi(0, "Delimiter", { fg = "#eff1e6" })
hi(0, "DiagnosticERRORReverse", { bg = "#f92672", fg = "#000000" })
hi(0, "DiagnosticError", { fg = "#da3769" })
hi(0, "DiagnosticHINTReverse", { bg = "#66d9ef", fg = "#000000" })
hi(0, "DiagnosticHint", { fg = "#72c8d9" })
hi(0, "DiagnosticINFOReverse", { bg = "#66d9ef", fg = "#000000" })
hi(0, "DiagnosticInfo", { fg = "#72c8d9" })
hi(0, "DiagnosticOk", { ctermfg = 10, fg = "#b2e3bb" })
hi(0, "DiagnosticSignError", { fg = "#da3769" })
hi(0, "DiagnosticSignHint", { fg = "#72c8d9" })
hi(0, "DiagnosticSignInfo", { fg = "#72c8d9" })
hi(0, "DiagnosticSignWarn", { fg = "#e48f38" })
hi(0, "DiagnosticUnderlineError", { sp = "#f92672", undercurl = true })
hi(0, "DiagnosticUnderlineHint", { sp = "#66d9ef", undercurl = true })
hi(0, "DiagnosticUnderlineInfo", { sp = "#66d9ef", undercurl = true })
hi(0, "DiagnosticUnderlineWarn", { sp = "#fd971f", undercurl = true })
hi(0, "DiagnosticUnnecessary", { fg = "#636363", sp = "#66d9ef", undercurl = true })
hi(0, "DiagnosticVirtualTextError", { bg = "#3c272a", fg = "#da3769" })
hi(0, "DiagnosticVirtualTextHint", { bg = "#2d3936", fg = "#72c8d9" })
hi(0, "DiagnosticVirtualTextInfo", { bg = "#2d3936", fg = "#72c8d9" })
hi(0, "DiagnosticVirtualTextWarn", { bg = "#3c3321", fg = "#e48f38" })
hi(0, "DiagnosticWARNReverse", { bg = "#fd971f", fg = "#000000" })
hi(0, "DiagnosticWarn", { fg = "#e48f38" })
hi(0, "DiffAdd", { bg = "#2a311b", fg = "#719535" })
hi(0, "DiffChange", { bg = "#332a19", fg = "#a06729" })
hi(0, "DiffDelete", { bg = "#331e21", fg = "#99294c" })
hi(0, "DiffText", { bg = "#272822", fg = "#eff1e6" })
hi(0, "DiffviewDiffAddAsDelete", { bg = "#331e21", fg = "#99294c" })
hi(0, "DiffviewDim1", { fg = "#636363" })
hi(0, "DiffviewFilePanelCounter", { bold = true, fg = "#eff1e6" })
hi(0, "DiffviewFilePanelFileName", { fg = "#eff1e6" })
hi(0, "DiffviewFilePanelTitle", { bold = true, fg = "#da3769" })
hi(0, "DiffviewPrimary", { fg = "#9fd149" })
hi(0, "DiffviewSecondary", { fg = "#d4cd80" })
hi(0, "Directory", { bg = "#1d1e19", fg = "#636363" })
hi(0, "EndOfBuffer", { fg = "#1b1b1a" })
hi(0, "Error", { fg = "#da3769" })
hi(0, "ErrorMsg", { bg = "#272822", fg = "#da3769" })
hi(0, "Exception", { fg = "#da3769" })
hi(0, "Float", { fg = "#9e7ae1" })
hi(0, "FloatBorder", { bg = "#272822", fg = "#101010" })
hi(0, "FloatTitle", { bg = "#e6db74", fg = "#101010" })
hi(0, "FoldColumn", { bg = "#272822", fg = "#b2b2b2" })
hi(0, "Folded", { bg = "#3c3d36" })
hi(0, "Function", { fg = "#9fd149" })
hi(0, "GitSignsAdd", { link = "SignAdd" })
hi(0, "GitSignsAddInline", { link = "DiffAdd" })
hi(0, "GitSignsChange", { link = "SignChange" })
hi(0, "GitSignsChangeInline", { link = "DiffChange" })
hi(0, "GitSignsCurrentLineBlame", { fg = "#4b4b4b" })
hi(0, "GitSignsDelete", { link = "SignDelete" })
hi(0, "GitSignsDeleteInline", { link = "DiffDelete" })
hi(0, "GitSignsStagedAdd", { fg = "#4a621d" })
hi(0, "GitSignsStagedAddLn", { bg = "#2a311b", fg = "#334514" })
hi(0, "GitSignsStagedAddNr", { fg = "#4a621d" })
hi(0, "GitSignsStagedChange", { fg = "#6b4214" })
hi(0, "GitSignsStagedChangeLn", { bg = "#332a19", fg = "#4a2e0e" })
hi(0, "GitSignsStagedChangeNr", { fg = "#6b4214" })
hi(0, "GitSignsStagedChangedelete", { fg = "#6b4214" })
hi(0, "GitSignsStagedChangedeleteLn", { bg = "#332a19", fg = "#4a2e0e" })
hi(0, "GitSignsStagedChangedeleteNr", { fg = "#6b4214" })
hi(0, "GitSignsStagedDelete", { fg = "#66142f" })
hi(0, "GitSignsStagedDeleteNr", { fg = "#66142f" })
hi(0, "GitSignsStagedTopdelete", { fg = "#66142f" })
hi(0, "GitSignsStagedTopdeleteNr", { fg = "#66142f" })
hi(0, "GlanceBorderTop", { bg = "#3c3d36", fg = "#101010" })
hi(0, "GlanceFoldIcon", { fg = "#b2b2b2" })
hi(0, "GlanceIndent", { fg = "#515151" })
hi(0, "GlanceListBorderBottom", { bg = "#383932", fg = "#101010" })
hi(0, "GlanceListCursorLine", { bg = "#42433d" })
hi(0, "GlanceListEndOfBuffer", { bg = "#383932", fg = "#2c2c2c" })
hi(0, "GlanceListFilepath", { fg = "#b2b2b2" })
hi(0, "GlanceListNormal", { bg = "#383932", fg = "#eff1e6" })
hi(0, "GlancePreviewBorderBottom", { bg = "#32332d", fg = "#101010" })
hi(0, "GlancePreviewCursorLine", { bg = "#3c3d37" })
hi(0, "GlancePreviewEndOfBuffer", { bg = "#32332d", fg = "#262626" })
hi(0, "GlancePreviewLineNr", { fg = "#575757" })
hi(0, "GlancePreviewMatch", { bg = "#474841" })
hi(0, "GlancePreviewNormal", { bg = "#32332d" })
hi(0, "GlancePreviewSignColumn", { fg = "#262626" })
hi(0, "GlanceWinBarFilename", { bg = "#3c3d36", fg = "#eff1e6" })
hi(0, "GlanceWinBarFilepath", { bg = "#3c3d36", fg = "#b4b4b4" })
hi(0, "GlanceWinBarTitle", { bg = "#3c3d36", fg = "#eff1e6" })
hi(0, "IblIndent", { fg = "#4b4b4b" })
hi(0, "IblScope", { bg = "#272822", fg = "#4b4b4b" })
hi(0, "IblWhitespace", { fg = "#4b4b4b" })
hi(0, "Identifier", { fg = "#eff1e6" })
hi(0, "IlluminatedWordRead", { bg = "#474841" })
hi(0, "IlluminatedWordText", { bg = "#474841" })
hi(0, "IlluminatedWordWrite", { bg = "#474841" })
hi(0, "IncSearch", { bg = "#e6db74", bold = true, fg = "#101010" })
hi(0, "Include", { fg = "#da3769" })
hi(0, "IndentBlankLineIndent1", { bg = "#2d2d1f", fg = "#212119" })
hi(0, "IndentBlankLineIndent2", { bg = "#202c2c", fg = "#181f1f" })
hi(0, "IndentBlankLineIndent3", { bg = "#2d242d", fg = "#1c1b1c" })
hi(0, "IndentBlankLineIndent4", { bg = "#242d24", fg = "#1c1f1c" })
hi(0, "IndentBlankLineIndent5", { fg = "#72c8d9" })
hi(0, "IndentBlankLineIndent6", { fg = "#9e7ae1" })
hi(0, "IndentBlanklineChar", { fg = "#2f2f2f" })
hi(0, "IndentBlanklineContextChar", { fg = "#e48f38" })
hi(0, "IndentBlanklineContextStart", { sp = "#fd971f", underline = true })
hi(0, "IndentBlanklineIndentChar1", { fg = "#5f5f56" })
hi(0, "IndentBlanklineIndentChar2", { fg = "#3c4a4a" })
hi(0, "IndentBlanklineIndentChar3", { fg = "#433f43" })
hi(0, "IndentBlanklineIndentChar4", { fg = "#323332" })
hi(0, "IndentBlanklineSpaceChar", { fg = "#1b1b1a" })
hi(0, "Italic", { italic = true })
hi(0, "Keyword", { fg = "#da3769", italic = true })
hi(0, "Label", { fg = "#da3769" })
hi(0, "LazyButton", { bg = "#3b3c35", fg = "#b2b2b2" })
hi(0, "LazyButtonActive", { bg = "#57584f", bold = true, fg = "#b2b2b2" })
hi(0, "LazyComment", { fg = "#d4cd80" })
hi(0, "LazyDir", { link = "LazyUrl" })
hi(0, "LazyH1", { bg = "#e6db74", bold = true, fg = "#101010" })
hi(0, "LazyH2", { bold = true, fg = "#9fd149" })
hi(0, "LazyNormal", { bg = "#22231e", fg = "#898989" })
hi(0, "LazyProgressDone", { bg = "#22231e", fg = "#d4cd80" })
hi(0, "LazyProgressTodo", { bg = "#22231e", fg = "#848484" })
hi(0, "LazyProp", { bg = "#22231e", fg = "#9fd149" })
hi(0, "LazyReasonCmd", { fg = "#72c8d9" })
hi(0, "LazyReasonStart", { fg = "#9fd149" })
hi(0, "LazySpecial", { bold = true, fg = "#d4cd80" })
hi(0, "LazyUrl", { fg = "#72c8d9" })
hi(0, "LineNr", { bg = "#272822", fg = "#4b4b4b" })
hi(0, "LspCodeLens", { link = "WarningMsg" })
hi(0, "LspCodeLensSeparator", { link = "Boolean" })
hi(0, "LspInlayHint", { bg = "#3a392a", fg = "#878787" })
hi(0, "Macro", { fg = "#da3769" })
hi(0, "MasonError", { fg = "#da3769" })
hi(0, "MasonHeader", { link = "LazyH1" })
hi(0, "MasonHeaderSecondary", { bg = "#e6db74", bold = true, fg = "#101010" })
hi(0, "MasonHeading", { link = "LazyH2" })
hi(0, "MasonHighlight", { fg = "#72c8d9" })
hi(0, "MasonHighlightBlock", { bg = "#e6db74", fg = "#161616" })
hi(0, "MasonHighlightBlockBold", { link = "LazyH1" })
hi(0, "MasonHighlightBlockBoldSecondary", { bg = "#fd971f", bold = true, fg = "#101010" })
hi(0, "MasonHighlightBlockSecondary", { bg = "#fd971f", fg = "#101010" })
hi(0, "MasonHighlightSecondary", { fg = "#e48f38" })
hi(0, "MasonLink", { link = "LazyUrl" })
hi(0, "MasonMuted", { fg = "#848484" })
hi(0, "MasonMutedBlock", { link = "LazyButton" })
hi(0, "MasonMutedBlockBold", { bg = "#919288", bold = true, fg = "#101010" })
hi(0, "MasonNormal", { link = "LazyNormal" })
hi(0, "MatchParen", { bold = true, fg = "#d4cd80", underline = true })
hi(0, "MiniCompletionActiveParameter", { underline = true })
hi(0, "MiniCursorword", { underline = true })
hi(0, "MiniIndentscopeSymbol", { fg = "#e48f38" })
hi(0, "ModeMsg", { bg = "#272822", fg = "#eff1e6" })
hi(0, "MoreMsg", { fg = "#d4cd80" })
hi(0, "MsgArea", { link = "ModeMsg" })
hi(0, "MsgSeparator", { link = "ModeMsg" })
hi(0, "MultiCursor", { link = "VM_Cursor" })
hi(0, "NavicIconsArray", { fg = "#da3769" })
hi(0, "NavicIconsBoolean", { fg = "#da3769" })
hi(0, "NavicIconsClass", { fg = "#72c8d9" })
hi(0, "NavicIconsColor", { fg = "#9e7ae1" })
hi(0, "NavicIconsConstant", { fg = "#9e7ae1" })
hi(0, "NavicIconsConstructor", { fg = "#9fd149" })
hi(0, "NavicIconsEnum", { fg = "#e48f38" })
hi(0, "NavicIconsEnumMember", { fg = "#e48f38" })
hi(0, "NavicIconsEvent", { fg = "#e48f38" })
hi(0, "NavicIconsField", { fg = "#e48f38" })
hi(0, "NavicIconsFile", { fg = "#b2b2b2" })
hi(0, "NavicIconsFolder", { fg = "#b2b2b2" })
hi(0, "NavicIconsFunction", { fg = "#9fd149" })
hi(0, "NavicIconsInterface", { fg = "#72c8d9" })
hi(0, "NavicIconsKey", { fg = "#e48f38" })
hi(0, "NavicIconsKeyword", { fg = "#da3769" })
hi(0, "NavicIconsMethod", { fg = "#9fd149" })
hi(0, "NavicIconsModule", { fg = "#72c8d9" })
hi(0, "NavicIconsNamespace", { fg = "#72c8d9" })
hi(0, "NavicIconsNull", { fg = "#9e7ae1" })
hi(0, "NavicIconsNumber", { fg = "#9e7ae1" })
hi(0, "NavicIconsObject", { fg = "#72c8d9" })
hi(0, "NavicIconsOperator", { fg = "#da3769" })
hi(0, "NavicIconsPackage", { fg = "#9e7ae1" })
hi(0, "NavicIconsProperty", { fg = "#e48f38" })
hi(0, "NavicIconsReference", { fg = "#9e7ae1" })
hi(0, "NavicIconsSnippet", { fg = "#9fd149" })
hi(0, "NavicIconsString", { fg = "#d4cd80" })
hi(0, "NavicIconsStruct", { fg = "#da3769" })
hi(0, "NavicIconsText", { fg = "#d4cd80" })
hi(0, "NavicIconsTypeParameter", { fg = "#e48f38" })
hi(0, "NavicIconsUnit", { fg = "#9e7ae1" })
hi(0, "NavicIconsVariable", { fg = "#72c8d9" })
hi(0, "NeoTreeCursor", { bg = "#353630" })
hi(0, "NeoTreeCursorLine", { bg = "#353630", bold = true })
hi(0, "NeoTreeCursorLineSign", { bg = "#353630" })
hi(0, "NeoTreeDirectoryIcon", { fg = "#848484" })
hi(0, "NeoTreeDirectoryName", { fg = "#848484" })
hi(0, "NeoTreeEndOfBuffer", { bg = "#1d1e19", fg = "#101010" })
hi(0, "NeoTreeExpander", { link = "NeoTreeDirectoryIcon" })
hi(0, "NeoTreeFloatBorder", { bg = "#1d1e19", fg = "#2f2f2f" })
hi(0, "NeoTreeFloatNormal", { bg = "#3b3c35", fg = "#b2b2b2" })
hi(0, "NeoTreeFloatTitle", { bg = "#e6db74", bold = true, fg = "#101010" })
hi(0, "NeoTreeGitAdded", { fg = "#9fd149" })
hi(0, "NeoTreeGitConflict", { fg = "#e48f38" })
hi(0, "NeoTreeGitDeleted", { fg = "#da3769" })
hi(0, "NeoTreeGitIgnored", { fg = "#4b4b4b" })
hi(0, "NeoTreeGitModified", { fg = "#d4cd80" })
hi(0, "NeoTreeGitRenamed", { fg = "#848484" })
hi(0, "NeoTreeGitStaged", { fg = "#d4cd80" })
hi(0, "NeoTreeGitUntracked", { fg = "#848484" })
hi(0, "NeoTreeIndentMarker", { link = "IndentBlanklineChar" })
hi(0, "NeoTreeNormal", { bg = "#1d1e19", fg = "#848484" })
hi(0, "NeoTreeNormalNC", { bg = "#1d1e19", fg = "#848484" })
hi(0, "NeoTreeRootName", { bold = true, fg = "#b2b2b2" })
hi(0, "NeoTreeSignColumn", { bg = "#1d1e19", fg = "#848484" })
hi(0, "NeoTreeStatusLine", { bg = "#1d1e19", fg = "#101010" })
hi(0, "NeoTreeTabActive", { bg = "#57584f", bold = true, fg = "#b2b2b2" })
hi(0, "NeoTreeTabInactive", { bg = "#3b3c35", fg = "#b2b2b2" })
hi(0, "NeoTreeTabSeparatorActive", { bg = "#57584f", fg = "#1b1b1a" })
hi(0, "NeoTreeTabSeparatorInactive", { bg = "#3b3c35", fg = "#1b1b1a" })
hi(0, "NeoTreeTitleBar", { bg = "#1d1e19", bold = true, fg = "#d4cd80" })
hi(0, "NeoTreeWinSeparator", { bg = "#272822", fg = "#1b1b1a" })
hi(0, "NeogitBranch", { bold = true, fg = "#da3769" })
hi(0, "NeogitBranchHead", { bold = true, fg = "#da3769", underline = true })
hi(0, "NeogitChangeAdded", { bold = true, fg = "#aca667", italic = true })
hi(0, "NeogitChangeCopied", { bold = true, fg = "#b12955", italic = true })
hi(0, "NeogitChangeDeleted", { bold = true, fg = "#b12955", italic = true })
hi(0, "NeogitChangeModified", { bold = true, fg = "#b12955", italic = true })
hi(0, "NeogitChangeNewFile", { bold = true, fg = "#aca667", italic = true })
hi(0, "NeogitChangeRenamed", { bold = true, fg = "#b12955", italic = true })
hi(0, "NeogitChangeUnmerged", { bold = true, fg = "#aea869", italic = true })
hi(0, "NeogitChangeUpdated", { bold = true, fg = "#bb752c", italic = true })
hi(0, "NeogitCommitViewHeader", { bg = "#cc1f5d", fg = "#1b1b1a" })
hi(0, "NeogitDiffAdd", { bg = "#2a311b", fg = "#aca667" })
hi(0, "NeogitDiffAddCursor", { bg = "#2b2c26", fg = "#d4cd80" })
hi(0, "NeogitDiffAddHighlight", { bg = "#2a311b", fg = "#d4cd80" })
hi(0, "NeogitDiffAdditions", { fg = "#aca667" })
hi(0, "NeogitDiffContext", { bg = "#2b2c26" })
hi(0, "NeogitDiffContextCursor", { bg = "#2b2c26" })
hi(0, "NeogitDiffContextHighlight", { bg = "#353630" })
hi(0, "NeogitDiffDelete", { bg = "#331e21", fg = "#b12955" })
hi(0, "NeogitDiffDeleteCursor", { bg = "#2b2c26", fg = "#da3769" })
hi(0, "NeogitDiffDeleteHighlight", { bg = "#331e21", fg = "#da3769" })
hi(0, "NeogitDiffDeletions", { fg = "#b12955" })
hi(0, "NeogitDiffHeader", { bg = "#3f403a", bold = true, fg = "#da3769" })
hi(0, "NeogitDiffHeaderHighlight", { bg = "#3f403a", bold = true, fg = "#e48f38" })
hi(0, "NeogitFilePath", { fg = "#da3769", italic = true })
hi(0, "NeogitFloatHeader", { bg = "#272822", bold = true })
hi(0, "NeogitFloatHeaderHighlight", { bg = "#353630", bold = true, fg = "#da3769" })
hi(0, "NeogitGraphAuthor", { fg = "#e48f38" })
hi(0, "NeogitGraphBlue", { fg = "#da3769" })
hi(0, "NeogitGraphBoldBlue", { bold = true, fg = "#da3769" })
hi(0, "NeogitGraphBoldCyan", { bold = true, fg = "#da3769" })
hi(0, "NeogitGraphBoldGray", { bold = true, fg = "#707070" })
hi(0, "NeogitGraphBoldGreen", { bold = true, fg = "#d4cd80" })
hi(0, "NeogitGraphBoldOrange", { bold = true, fg = "#e48f38" })
hi(0, "NeogitGraphBoldPurple", { bold = true, fg = "#da3769" })
hi(0, "NeogitGraphBoldRed", { bold = true, fg = "#da3769" })
hi(0, "NeogitGraphBoldWhite", { bold = true, fg = "#eeeeee" })
hi(0, "NeogitGraphBoldYellow", { bold = true, fg = "#d4cd80" })
hi(0, "NeogitGraphCyan", { fg = "#da3769" })
hi(0, "NeogitGraphGray", { fg = "#707070" })
hi(0, "NeogitGraphGreen", { fg = "#d4cd80" })
hi(0, "NeogitGraphOrange", { fg = "#e48f38" })
hi(0, "NeogitGraphPurple", { fg = "#da3769" })
hi(0, "NeogitGraphRed", { fg = "#da3769" })
hi(0, "NeogitGraphWhite", { fg = "#eeeeee" })
hi(0, "NeogitGraphYellow", { fg = "#d4cd80" })
hi(0, "NeogitHunkHeader", { bg = "#7d7e7a", bold = true, fg = "#1b1b1a" })
hi(0, "NeogitHunkHeaderCursor", { bg = "#fa4d8b", bold = true, fg = "#1b1b1a" })
hi(0, "NeogitHunkHeaderHighlight", { bg = "#fa4d8b", bold = true, fg = "#1b1b1a" })
hi(0, "NeogitHunkMergeHeader", { bg = "#7d7e7a", bold = true, fg = "#292929" })
hi(0, "NeogitHunkMergeHeaderCursor", { bg = "#cc1f5d", bold = true, fg = "#1b1b1a" })
hi(0, "NeogitHunkMergeHeaderHighlight", { bg = "#cc1f5d", bold = true, fg = "#1b1b1a" })
hi(0, "NeogitPopupActionKey", { fg = "#da3769" })
hi(0, "NeogitPopupBold", { bold = true })
hi(0, "NeogitPopupConfigKey", { fg = "#da3769" })
hi(0, "NeogitPopupOptionKey", { fg = "#da3769" })
hi(0, "NeogitPopupSwitchKey", { fg = "#da3769" })
hi(0, "NeogitRemote", { bold = true, fg = "#d4cd80" })
hi(0, "NeogitSectionHeader", { bold = true, fg = "#b12955" })
hi(0, "NeogitTagDistance", { fg = "#da3769" })
hi(0, "NeogitTagName", { fg = "#d4cd80" })
hi(0, "NeogitUnmergedInto", { bold = true, fg = "#b12955" })
hi(0, "NeogitUnpulledFrom", { bold = true, fg = "#b12955" })
hi(0, "NeogitUnpushedTo", { bold = true, fg = "#b12955" })
hi(0, "NoiceAttr166", { bg = "#272822", fg = "#eff1e6" })
hi(0, "NoiceCmdlineIconSearch", { fg = "#e48f38" })
hi(0, "NoiceCmdlinePopup", { bg = "#272822" })
hi(0, "NoiceCmdlinePopupBorder", { bg = "#272822", fg = "#b2b2b2" })
hi(0, "NoiceCmdlinePopupBorderSearch", { bg = "#272822", fg = "#e48f38" })
hi(0, "NoiceConfirm", { bg = "#3b3c35", fg = "#b2b2b2" })
hi(0, "NoiceConfirmBorder", { bg = "#3b3c35", fg = "#2f2f2f" })
hi(0, "NoiceFormatConfirm", { bg = "#3b3c35", fg = "#b2b2b2" })
hi(0, "NoiceFormatConfirmDefault", { bg = "#57584f", fg = "#b2b2b2" })
hi(0, "NoiceFormatProgressDone", { bg = "#e6db74", bold = true, fg = "#101010" })
hi(0, "NoiceFormatProgressTodo", { bg = "#6e7066", fg = "#2f2f2f" })
hi(0, "NoiceHiddenCursor", { blend = 100, nocombine = true })
hi(0, "NoiceLspProgressClient", { fg = "#72c8d9" })
hi(0, "NoiceLspProgressTitle", { fg = "#848484" })
hi(0, "NoiceMini", { fg = "#4b4b4b" })
hi(0, "NoiceSplit", { bg = "#272822" })
hi(0, "NonText", { fg = "#1b1b1a" })
hi(0, "Normal", { bg = "#272822", fg = "#eff1e6" })
hi(0, "NormalFloat", { bg = "#1d1e19", fg = "#b2b2b2" })
hi(0, "NormalNC", { bg = "#272822", fg = "#eff1e6" })
hi(0, "NotifyBackground", { bg = "#3b3c35", fg = "#b2b2b2" })
hi(0, "NotifyDEBUGBody", { bg = "#3b3c35", fg = "#b2b2b2" })
hi(0, "NotifyDEBUGBorder", { bg = "#3b3c35", fg = "#2f2f2f" })
hi(0, "NotifyDEBUGIcon", { bg = "#3b3c35", fg = "#eff1e6" })
hi(0, "NotifyDEBUGTitle", { bg = "#3b3c35", fg = "#848484" })
hi(0, "NotifyERRORBody", { bg = "#3b3c35", fg = "#b2b2b2" })
hi(0, "NotifyERRORBorder", { bg = "#3b3c35", fg = "#2f2f2f" })
hi(0, "NotifyERRORIcon", { bg = "#3b3c35", fg = "#da3769" })
hi(0, "NotifyERRORTitle", { link = "NotifyERRORIcon" })
hi(0, "NotifyINFOBody", { bg = "#3b3c35", fg = "#b2b2b2" })
hi(0, "NotifyINFOBorder", { bg = "#3b3c35", fg = "#2f2f2f" })
hi(0, "NotifyINFOIcon", { bg = "#3b3c35", fg = "#72c8d9" })
hi(0, "NotifyINFOTitle", { link = "NotifyINFOIcon" })
hi(0, "NotifyTRACEBody", { bg = "#3b3c35", fg = "#b2b2b2" })
hi(0, "NotifyTRACEBorder", { bg = "#3b3c35", fg = "#2f2f2f" })
hi(0, "NotifyTRACEIcon", { bg = "#3b3c35", fg = "#9e7ae1" })
hi(0, "NotifyTRACETitle", { bg = "#3b3c35", fg = "#9e7ae1" })
hi(0, "NotifyWARNBody", { bg = "#3b3c35", fg = "#b2b2b2" })
hi(0, "NotifyWARNBorder", { bg = "#3b3c35", fg = "#2f2f2f" })
hi(0, "NotifyWARNIcon", { bg = "#3b3c35", fg = "#e48f38" })
hi(0, "NotifyWARNTitle", { link = "NotifyWARNIcon" })
hi(0, "Number", { fg = "#9e7ae1" })
hi(0, "NvimInternalError", { bg = "#ff0000", ctermbg = 9, ctermfg = 9, fg = "#e0281d" })
hi(0, "NvimTreeCursorLine", { bg = "#353630" })
hi(0, "NvimTreeEmptyFolderName", { fg = "#848484", italic = true })
hi(0, "NvimTreeEndOfBuffer", { bg = "#1d1e19", fg = "#101010" })
hi(0, "NvimTreeExecFile", { fg = "#9fd149" })
hi(0, "NvimTreeFolderIcon", { fg = "#848484" })
hi(0, "NvimTreeFolderName", { fg = "#848484" })
hi(0, "NvimTreeGitDeleted", { fg = "#da3769" })
hi(0, "NvimTreeGitDeletedIcon", { link = "NvimTreeGitDeleted" })
hi(0, "NvimTreeGitDirty", { fg = "#d4cd80" })
hi(0, "NvimTreeGitDirtyIcon", { link = "NvimTreeGitDirty" })
hi(0, "NvimTreeGitIgnored", { fg = "#4b4b4b" })
hi(0, "NvimTreeGitIgnoredIcon", { link = "NvimTreeGitIgnored" })
hi(0, "NvimTreeGitMerge", { fg = "#e48f38" })
hi(0, "NvimTreeGitMergeIcon", { link = "NvimTreeGitMerge" })
hi(0, "NvimTreeGitNew", { fg = "#848484" })
hi(0, "NvimTreeGitNewIcon", { link = "NvimTreeGitNew" })
hi(0, "NvimTreeGitRenamed", { fg = "#848484" })
hi(0, "NvimTreeGitRenamedIcon", { link = "NvimTreeGitRenamed" })
hi(0, "NvimTreeGitStaged", { fg = "#d4cd80" })
hi(0, "NvimTreeGitStagedIcon", { link = "NvimTreeGitStaged" })
hi(0, "NvimTreeGitignoreIcon", { fg = "#4b4b4b" })
hi(0, "NvimTreeImageFile", { fg = "#eff1e6" })
hi(0, "NvimTreeIndentMarker", { link = "IndentBlanklineChar" })
hi(0, "NvimTreeNormal", { bg = "#1d1e19", fg = "#848484" })
hi(0, "NvimTreeOpenedFolderName", { fg = "#848484", italic = true })
hi(0, "NvimTreeRootFolder", { bold = true, fg = "#b2b2b2" })
hi(0, "NvimTreeSpecialFile", { fg = "#eff1e6" })
hi(0, "NvimTreeSymlink", { fg = "#eff1e6" })
hi(0, "NvimTreeWinSeparator", { bg = "#272822", fg = "#1b1b1a" })
hi(0, "NvimTreeWindowPicker", { bg = "#4493c8", bold = true, ctermbg = 4, ctermfg = 15, fg = "#dfdfdf" })
hi(0, "Offset", { bg = "#1d1e19", fg = "#4b4b4b", sp = "#272822" })
hi(0, "Operator", { fg = "#da3769" })
hi(0, "Pmenu", { bg = "#3b3c35", fg = "#b2b2b2" })
hi(0, "PmenuSbar", { bg = "#31322b" })
hi(0, "PmenuSel", { bg = "#6e7066", bold = true })
hi(0, "PmenuThumb", { bg = "#3d3e38" })
hi(0, "PreCondit", { fg = "#da3769" })
hi(0, "PreProc", { fg = "#d4cd80" })
hi(0, "Question", { ctermfg = 14, fg = "#94e6e5" })
hi(0, "QuickFixLine", { ctermfg = 14, fg = "#94e6e5" })
hi(0, "RainbowDelimiterBlue", { fg = "#72c8d9" })
hi(0, "RainbowDelimiterCyan", { fg = "#72c8d9" })
hi(0, "RainbowDelimiterGreen", { fg = "#9fd149" })
hi(0, "RainbowDelimiterOrange", { fg = "#e48f38" })
hi(0, "RainbowDelimiterRed", { fg = "#da3769" })
hi(0, "RainbowDelimiterViolet", { fg = "#9e7ae1" })
hi(0, "RainbowDelimiterYellow", { fg = "#d4cd80" })
hi(0, "Removed", { ctermfg = 9, fg = "#e9b6b0" })
hi(0, "RenamerBorder", { bg = "#272822", fg = "#2f2f2f" })
hi(0, "RenamerNormal", { bg = "#3b3c35" })
hi(0, "RenamerTitle", { bg = "#e6db74", bold = true, fg = "#101010" })
hi(0, "Repeat", { fg = "#da3769" })
hi(0, "SPCursorLine", { bg = "#57584f", bold = true, fg = "#d4cd80" })
hi(0, "SPFloatBorder", { bg = "#272822", fg = "#2f2f2f" })
hi(0, "SPNormalFloat", { bg = "#3b3c35", fg = "#b2b2b2" })
hi(0, "SPTitle", { bg = "#e6db74", bold = true, fg = "#101010" })
hi(0, "SagaActionTitle", { bg = "#66d9ef", fg = "#000000" })
hi(0, "SagaBeacon", { bg = "#c43963" })
hi(0, "SagaButton", { fg = "#72c8d9" })
hi(0, "SagaCount", { bg = "#808080", bold = true, fg = "#f1f1f1" })
hi(0, "SagaVirtLine", { fg = "#3d3d3d" })
hi(0, "SatelliteCursor", { fg = "#1b1b1a" })
hi(0, "SatelliteMark", { fg = "#eff1e6" })
hi(0, "SatelliteSearch", { fg = "#3b3b3b" })
hi(0, "ScrollbarCursor", { bg = "#353630", fg = "#292929" })
hi(0, "ScrollbarCursorHandle", { bg = "#3d3e38" })
hi(0, "ScrollbarError", { bg = "#272822", fg = "#da3769" })
hi(0, "ScrollbarErrorHandle", { bg = "#3d3e38", fg = "#da3769" })
hi(0, "ScrollbarGitAdd", { bg = "#272822", fg = "#9fd149" })
hi(0, "ScrollbarGitAddHandle", { bg = "#3d3e38", fg = "#9fd149" })
hi(0, "ScrollbarGitChange", { bg = "#272822", fg = "#d4cd80" })
hi(0, "ScrollbarGitChangeHandle", { bg = "#3d3e38", fg = "#d4cd80" })
hi(0, "ScrollbarGitDelete", { bg = "#272822", fg = "#da3769" })
hi(0, "ScrollbarGitDeleteHandle", { bg = "#3d3e38", fg = "#da3769" })
hi(0, "ScrollbarHandle", { bg = "#3d3e38", fg = "#eff1e6" })
hi(0, "ScrollbarHint", { bg = "#272822", fg = "#72c8d9" })
hi(0, "ScrollbarHintHandle", { bg = "#3d3e38", fg = "#72c8d9" })
hi(0, "ScrollbarInfo", { bg = "#272822", fg = "#72c8d9" })
hi(0, "ScrollbarInfoHandle", { bg = "#3d3e38", fg = "#72c8d9" })
hi(0, "ScrollbarSearch", { bg = "#272822", fg = "#eff1e6" })
hi(0, "ScrollbarSearchHandle", { bg = "#3d3e38" })
hi(0, "ScrollbarWarn", { bg = "#272822", fg = "#e48f38" })
hi(0, "ScrollbarWarnHandle", { bg = "#3d3e38", fg = "#e48f38" })
hi(0, "Search", { bg = "#474841" })
hi(0, "SignAdd", { fg = "#9fd149" })
hi(0, "SignChange", { fg = "#e48f38" })
hi(0, "SignColumn", { bg = "#272822" })
hi(0, "SignDelete", { fg = "#da3769" })
hi(0, "Special", { fg = "#e48f38" })
hi(0, "SpecialChar", { fg = "#e48f38" })
hi(0, "SpecialComment", { fg = "#636363" })
hi(0, "SpecialKey", { fg = "#464646" })
hi(0, "SpectreBody", { link = "String" })
hi(0, "SpectreBorder", { link = "Comment" })
hi(0, "SpectreDir", { link = "Comment" })
hi(0, "SpectreFile", { link = "Keyword" })
hi(0, "SpectreHeader", { link = "Comment" })
hi(0, "SpectreReplace", { link = "DiffDelete" })
hi(0, "SpectreSearch", { link = "DiffChange" })
hi(0, "SpellBad", { fg = "#da3769", sp = "#f92672", undercurl = true })
hi(0, "SpellCap", { fg = "#da3769", sp = "#f92672", undercurl = true })
hi(0, "SpellLocal", { fg = "#da3769", sp = "#f92672", undercurl = true })
hi(0, "SpellRare", { fg = "#da3769", sp = "#f92672", undercurl = true })
hi(0, "Statement", { fg = "#9e7ae1" })
hi(0, "StatusLine", { bg = "#161613", fg = "#b2b2b2" })
hi(0, "StatusLineNC", { bg = "#161613", fg = "#636363" })
hi(0, "StatusLineSeparator", { fg = "#080808" })
hi(0, "StatusLineTerm", { fg = "#080808" })
hi(0, "StatusLineTermNC", { fg = "#080808" })
hi(0, "StorageClass", { fg = "#da3769", italic = true })
hi(0, "String", { fg = "#d4cd80" })
hi(0, "Structure", { fg = "#72c8d9", italic = true })
hi(0, "TSRainbowBlue", { fg = "#72c8d9" })
hi(0, "TSRainbowCyan", { fg = "#72c8d9" })
hi(0, "TSRainbowGreen", { fg = "#9fd149" })
hi(0, "TSRainbowOrange", { fg = "#e48f38" })
hi(0, "TSRainbowRed", { fg = "#da3769" })
hi(0, "TSRainbowViolet", { fg = "#9e7ae1" })
hi(0, "TSRainbowYellow", { fg = "#d4cd80" })
hi(0, "TabLine", { link = "BufferLineBackground" })
hi(0, "TabLineFill", { link = "BufferLineFill" })
hi(0, "TabLineSel", { bg = "#272822", fg = "#d4cd80", sp = "#e6db74", underline = true })
hi(0, "TailwindConceal", { fg = "#49adde" })
hi(0, "TelescopeBorder", { bg = "#272822", fg = "#2f2f2f" })
hi(0, "TelescopeMatching", { bold = true, fg = "#e48f38" })
hi(0, "TelescopeNormal", { bg = "#3b3c35", fg = "#a2a2a2" })
hi(0, "TelescopePreviewBorder", { bg = "#272822", fg = "#2f2f2f" })
hi(0, "TelescopePreviewLine", { link = "TelescopeSelection" })
hi(0, "TelescopePreviewNormal", { bg = "#3b3c35", fg = "#a2a2a2" })
hi(0, "TelescopePreviewTitle", { bg = "#e6db74", bold = true, fg = "#101010" })
hi(0, "TelescopePromptBorder", { bg = "#272822", fg = "#393939" })
hi(0, "TelescopePromptCounter", { bold = true, fg = "#da3769" })
hi(0, "TelescopePromptNormal", { bg = "#45463f", fg = "#a2a2a2" })
hi(0, "TelescopePromptPrefix", { fg = "#72c8d9" })
hi(0, "TelescopePromptTitle", { bg = "#e6db74", bold = true, fg = "#101010" })
hi(0, "TelescopeResultsBorder", { bg = "#272822", fg = "#2f2f2f" })
hi(0, "TelescopeResultsNormal", { bg = "#3b3c35", fg = "#a2a2a2" })
hi(0, "TelescopeResultsTitle", { bg = "#e6db74", bold = true, fg = "#101010" })
hi(0, "TelescopeSelection", { bg = "#505d33", bold = true })
hi(0, "TelescopeSelectionCaret", { bg = "#505d33", fg = "#9fd149" })
hi(0, "TermCursor", { bg = "#fdfff1", fg = "#f1f1f1" })
hi(0, "Title", { bold = true, fg = "#d4cd80" })
hi(0, "Todo", { bg = "#272822", bold = true, fg = "#9e7ae1" })
hi(0, "TodoBgCURRENT", { bg = "#fd971f", bold = true, fg = "#1b1b1a" })
hi(0, "TodoBgFIX", { bg = "#f92672", bold = true, fg = "#eff1e6" })
hi(0, "TodoBgHACK", { bg = "#fd971f", bold = true, fg = "#1b1b1a" })
hi(0, "TodoBgIMP", { bg = "#f92672", bold = true, fg = "#eff1e6" })
hi(0, "TodoBgNOTE", { bg = "#66d9ef", bold = true, fg = "#1b1b1a" })
hi(0, "TodoBgPERF", { bg = "#fdfff1", bold = true, fg = "#1b1b1a" })
hi(0, "TodoBgSECURITY", { bg = "#f92672", bold = true, fg = "#eff1e6" })
hi(0, "TodoBgTEST", { bg = "#fdfff1", bold = true, fg = "#1b1b1a" })
hi(0, "TodoBgTODO", { bg = "#66d9ef", bold = true, fg = "#1b1b1a" })
hi(0, "TodoBgUSERINPUT", { bg = "#f92672", bold = true, fg = "#eff1e6" })
hi(0, "TodoBgVULNERABILITY", { bg = "#f92672", bold = true, fg = "#eff1e6" })
hi(0, "TodoBgWARN", { bg = "#fd971f", bold = true, fg = "#1b1b1a" })
hi(0, "TodoFgCURRENT", { fg = "#e48f38" })
hi(0, "TodoFgFIX", { fg = "#da3769" })
hi(0, "TodoFgHACK", { fg = "#e48f38" })
hi(0, "TodoFgIMP", { fg = "#da3769" })
hi(0, "TodoFgNOTE", { fg = "#72c8d9" })
hi(0, "TodoFgPERF", { fg = "#eff1e6" })
hi(0, "TodoFgSECURITY", { fg = "#da3769" })
hi(0, "TodoFgTEST", { fg = "#eff1e6" })
hi(0, "TodoFgTODO", { fg = "#72c8d9" })
hi(0, "TodoFgUSERINPUT", { fg = "#da3769" })
hi(0, "TodoFgVULNERABILITY", { fg = "#da3769" })
hi(0, "TodoFgWARN", { fg = "#e48f38" })
hi(0, "TodoSignCURRENT", { bg = "#272822", fg = "#e48f38" })
hi(0, "TodoSignFIX", { bg = "#272822", fg = "#da3769" })
hi(0, "TodoSignHACK", { bg = "#272822", fg = "#e48f38" })
hi(0, "TodoSignIMP", { bg = "#272822", fg = "#da3769" })
hi(0, "TodoSignNOTE", { bg = "#272822", fg = "#72c8d9" })
hi(0, "TodoSignPERF", { bg = "#272822", fg = "#eff1e6" })
hi(0, "TodoSignSECURITY", { bg = "#272822", fg = "#da3769" })
hi(0, "TodoSignTEST", { bg = "#272822", fg = "#eff1e6" })
hi(0, "TodoSignTODO", { bg = "#272822", fg = "#72c8d9" })
hi(0, "TodoSignUSERINPUT", { bg = "#272822", fg = "#da3769" })
hi(0, "TodoSignVULNERABILITY", { bg = "#272822", fg = "#da3769" })
hi(0, "TodoSignWARN", { bg = "#272822", fg = "#e48f38" })
hi(0, "ToggleTerm", { bg = "#3b3c35", fg = "#eff1e6" })
hi(0, "ToggleTermBorder", { bg = "#272822", fg = "#2f2f2f" })
hi(0, "ToggleTermNormal", { bg = "#3b3c35", fg = "#eff1e6" })
hi(0, "Type", { fg = "#eff1e6" })
hi(0, "Typedef", { fg = "#da3769" })
hi(0, "UfoFoldedBg", { bg = "#272822" })
hi(0, "VertSplit", { bg = "#272822", fg = "#101010" })
hi(0, "Visual", { bg = "#3d3e38" })
hi(0, "WarningMsg", { fg = "#e48f38" })
hi(0, "WhichKey", { fg = "#e48f38" })
hi(0, "WhichKeyBorder", { bg = "#3b3c35", fg = "#2f2f2f" })
hi(0, "WhichKeyDesc", { fg = "#d4cd80" })
hi(0, "WhichKeyFloat", { bg = "#3b3c35" })
hi(0, "WhichKeyGroup", { fg = "#9e7ae1" })
hi(0, "WhichKeySeperator", { fg = "#da3769" })
hi(0, "Whitespace", { fg = "#4b4b4b" })
hi(0, "WildMenu", { bg = "#e6db74", bold = true, fg = "#101010" })
hi(0, "WinBar", { bg = "#272822", fg = "#848484" })
hi(0, "WinBarNC", { bg = "#07080d", fg = "#919191" })
hi(0, "WinSeparator", { fg = "#101010" })
hi(0, "WinShiftCursorLineNr", { bg = "#3d3e38", bold = true, fg = "#b2b2b2" })
hi(0, "WinShiftEndOfBuffer", { bg = "#3d3e38", fg = "#313131" })
hi(0, "WinShiftFoldColumn", { bg = "#3d3e38", fg = "#b2b2b2" })
hi(0, "WinShiftLineNr", { bg = "#3d3e38", fg = "#4b4b4b" })
hi(0, "WinShiftNormal", { bg = "#3d3e38" })
hi(0, "WinShiftSignColumn", { bg = "#3d3e38" })
hi(0, "WinShiftWindowPicker", { bg = "#4493c8", bold = true, fg = "#dfdfdf" })
hi(0, "diffAdded", { fg = "#9fd149" })
hi(0, "diffChanged", { fg = "#d4cd80" })
hi(0, "diffFile", { fg = "#d4cd80" })
hi(0, "diffLine", { fg = "#72c8d9" })
hi(0, "diffNewFile", { fg = "#d4cd80" })
hi(0, "diffRemoved", { fg = "#da3769" })
hi(0, "healthError", { fg = "#da3769" })
hi(0, "healthSuccess", { fg = "#9fd149" })
hi(0, "healthWarning", { fg = "#e48f38" })
hi(0, "javaAnnotation", { fg = "#848484" })
hi(0, "lCursor", { bg = "#fdfff1", fg = "#1b1b1a" })
hi(0, "lualine_a_15_command", { bg = "#e6db74", fg = "#101010" })
hi(0, "lualine_a_15_inactive", { bg = "#1d1e19", fg = "#d4cd80" })
hi(0, "lualine_a_15_insert", { bg = "#a6e22e", fg = "#101010" })
hi(0, "lualine_a_15_normal", { bg = "#e6db74", fg = "#101010" })
hi(0, "lualine_a_15_replace", { bg = "#f92672", fg = "#101010" })
hi(0, "lualine_a_15_terminal", { bg = "#e6db74", fg = "#101010" })
hi(0, "lualine_a_15_visual", { bg = "#ae81ff", fg = "#101010" })
hi(0, "lualine_a_3_command", { bg = "#e6db74", fg = "#101010" })
hi(0, "lualine_a_3_inactive", { bg = "#1d1e19", fg = "#d4cd80" })
hi(0, "lualine_a_3_insert", { bg = "#a6e22e", fg = "#101010" })
hi(0, "lualine_a_3_normal", { bg = "#e6db74", fg = "#101010" })
hi(0, "lualine_a_3_replace", { bg = "#f92672", fg = "#101010" })
hi(0, "lualine_a_3_terminal", { bg = "#e6db74", fg = "#101010" })
hi(0, "lualine_a_3_visual", { bg = "#ae81ff", fg = "#101010" })
hi(0, "lualine_a_command", { bg = "#e6db74", fg = "#101010" })
hi(0, "lualine_a_inactive", { bg = "#1d1e19", fg = "#d4cd80" })
hi(0, "lualine_a_insert", { bg = "#a6e22e", fg = "#101010" })