-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdark.jsonc
2395 lines (2395 loc) · 70.4 KB
/
dark.jsonc
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
{
"$schema": "vscode://schemas/color-theme",
"type": "dark",
"colors": {
"activityBar.activeBackground": "#00000000",
"activityBar.activeBorder": "#00000000",
"activityBar.activeFocusBorder": "#00000000",
"activityBar.background": "#11111b",
"activityBar.border": "#00000000",
"activityBar.dropBorder": "#cba6f733",
"activityBar.foreground": "#cba6f7",
"activityBar.inactiveForeground": "#6c7086",
"activityBarBadge.background": "#cba6f7",
"activityBarBadge.foreground": "#11111b",
"activityBarTop.activeBorder": "#00000000",
"activityBarTop.dropBorder": "#cba6f733",
"activityBarTop.foreground": "#cba6f7",
"activityBarTop.inactiveForeground": "#6c7086",
"badge.background": "#45475a",
"badge.foreground": "#cdd6f4",
"banner.background": "#45475a",
"banner.foreground": "#cdd6f4",
"banner.iconForeground": "#cdd6f4",
"breadcrumb.activeSelectionForeground": "#cba6f7",
"breadcrumb.background": "#1e1e2e",
"breadcrumb.focusForeground": "#cba6f7",
"breadcrumb.foreground": "#cdd6f4cc",
"breadcrumbPicker.background": "#181825",
"button.background": "#cba6f7",
"button.border": "#00000000",
"button.foreground": "#11111b",
"button.hoverBackground": "#dec7fa",
"button.secondaryBackground": "#585b70",
"button.secondaryForeground": "#cdd6f4",
"button.secondaryHoverBackground": "#686b84",
"button.separator": "#00000000",
"charts.blue": "#89b4fa",
"charts.foreground": "#cdd6f4",
"charts.green": "#a6e3a1",
"charts.lines": "#bac2de",
"charts.orange": "#fab387",
"charts.purple": "#cba6f7",
"charts.red": "#f38ba8",
"charts.yellow": "#f9e2af",
"checkbox.background": "#45475a",
"checkbox.border": "#00000000",
"checkbox.foreground": "#cba6f7",
"commandCenter.activeBackground": "#585b7033",
"commandCenter.activeBorder": "#cba6f7",
"commandCenter.activeForeground": "#cba6f7",
"commandCenter.background": "#181825",
"commandCenter.border": "#00000000",
"commandCenter.foreground": "#bac2de",
"commandCenter.inactiveBorder": "#00000000",
"commandCenter.inactiveForeground": "#bac2de",
"debugConsole.errorForeground": "#f38ba8",
"debugConsole.infoForeground": "#89b4fa",
"debugConsole.sourceForeground": "#f5e0dc",
"debugConsole.warningForeground": "#fab387",
"debugConsoleInputIcon.foreground": "#cdd6f4",
"debugExceptionWidget.background": "#11111b",
"debugExceptionWidget.border": "#cba6f7",
"debugIcon.breakpointCurrentStackframeForeground": "#585b70",
"debugIcon.breakpointDisabledForeground": "#f38ba899",
"debugIcon.breakpointForeground": "#f38ba8",
"debugIcon.breakpointStackframeForeground": "#585b70",
"debugIcon.breakpointUnverifiedForeground": "#a6738c",
"debugIcon.continueForeground": "#a6e3a1",
"debugIcon.disconnectForeground": "#585b70",
"debugIcon.pauseForeground": "#89b4fa",
"debugIcon.restartForeground": "#94e2d5",
"debugIcon.startForeground": "#a6e3a1",
"debugIcon.stepBackForeground": "#585b70",
"debugIcon.stepIntoForeground": "#cdd6f4",
"debugIcon.stepOutForeground": "#cdd6f4",
"debugIcon.stepOverForeground": "#cba6f7",
"debugIcon.stopForeground": "#f38ba8",
"debugTokenExpression.boolean": "#cba6f7",
"debugTokenExpression.error": "#f38ba8",
"debugTokenExpression.number": "#fab387",
"debugTokenExpression.string": "#a6e3a1",
"debugToolBar.background": "#11111b",
"debugToolBar.border": "#00000000",
"descriptionForeground": "#cdd6f4",
"diffEditor.border": "#585b70",
"diffEditor.diagonalFill": "#585b7099",
"diffEditor.insertedLineBackground": "#a6e3a126",
"diffEditor.insertedTextBackground": "#a6e3a11a",
"diffEditor.removedLineBackground": "#f38ba826",
"diffEditor.removedTextBackground": "#f38ba81a",
"diffEditorOverview.insertedForeground": "#a6e3a1cc",
"diffEditorOverview.removedForeground": "#f38ba8cc",
"disabledForeground": "#a6adc8",
"dropdown.background": "#181825",
"dropdown.border": "#cba6f7",
"dropdown.foreground": "#cdd6f4",
"dropdown.listBackground": "#585b70",
"editor.background": "#1e1e2e",
"editor.findMatchBackground": "#5e3f53",
"editor.findMatchBorder": "#f38ba833",
"editor.findMatchHighlightBackground": "#3e5767",
"editor.findMatchHighlightBorder": "#89dceb33",
"editor.findRangeHighlightBackground": "#3e5767",
"editor.findRangeHighlightBorder": "#89dceb33",
"editor.focusedStackFrameHighlightBackground": "#a6e3a126",
"editor.foldBackground": "#89dceb40",
"editor.foreground": "#cdd6f4",
"editor.hoverHighlightBackground": "#89dceb40",
"editor.lineHighlightBackground": "#cdd6f412",
"editor.lineHighlightBorder": "#00000000",
"editor.rangeHighlightBackground": "#89dceb40",
"editor.rangeHighlightBorder": "#00000000",
"editor.selectionBackground": "#9399b240",
"editor.selectionHighlightBackground": "#9399b233",
"editor.selectionHighlightBorder": "#9399b233",
"editor.stackFrameHighlightBackground": "#f9e2af26",
"editor.wordHighlightBackground": "#9399b233",
"editor.wordHighlightStrongBackground": "#89b4fa33",
"editorBracketHighlight.foreground1": "#f38ba8",
"editorBracketHighlight.foreground2": "#fab387",
"editorBracketHighlight.foreground3": "#f9e2af",
"editorBracketHighlight.foreground4": "#a6e3a1",
"editorBracketHighlight.foreground5": "#74c7ec",
"editorBracketHighlight.foreground6": "#cba6f7",
"editorBracketHighlight.unexpectedBracket.foreground": "#eba0ac",
"editorBracketMatch.background": "#9399b21a",
"editorBracketMatch.border": "#9399b2",
"editorCodeLens.foreground": "#7f849c",
"editorCursor.background": "#1e1e2e",
"editorCursor.foreground": "#f5e0dc",
"editorError.background": "#00000000",
"editorError.border": "#00000000",
"editorError.foreground": "#f38ba8",
"editorGroup.border": "#585b70",
"editorGroup.dropBackground": "#cba6f733",
"editorGroup.emptyBackground": "#1e1e2e",
"editorGroupHeader.tabsBackground": "#11111b",
"editorGutter.addedBackground": "#a6e3a1",
"editorGutter.background": "#1e1e2e",
"editorGutter.commentGlyphForeground": "#cba6f7",
"editorGutter.commentRangeForeground": "#313244",
"editorGutter.deletedBackground": "#f38ba8",
"editorGutter.foldingControlForeground": "#9399b2",
"editorGutter.modifiedBackground": "#f9e2af",
"editorHoverWidget.background": "#181825",
"editorHoverWidget.border": "#585b70",
"editorHoverWidget.foreground": "#cdd6f4",
"editorIndentGuide.activeBackground": "#585b70",
"editorIndentGuide.background": "#45475a",
"editorInfo.background": "#00000000",
"editorInfo.border": "#00000000",
"editorInfo.foreground": "#89b4fa",
"editorInlayHint.background": "#181825bf",
"editorInlayHint.foreground": "#585b70",
"editorInlayHint.parameterBackground": "#181825bf",
"editorInlayHint.parameterForeground": "#a6adc8",
"editorInlayHint.typeBackground": "#181825bf",
"editorInlayHint.typeForeground": "#bac2de",
"editorLightBulb.foreground": "#f9e2af",
"editorLineNumber.activeForeground": "#cba6f7",
"editorLineNumber.foreground": "#7f849c",
"editorLink.activeForeground": "#cba6f7",
"editorMarkerNavigation.background": "#181825",
"editorMarkerNavigationError.background": "#f38ba8",
"editorMarkerNavigationInfo.background": "#89b4fa",
"editorMarkerNavigationWarning.background": "#fab387",
"editorOverviewRuler.background": "#181825",
"editorOverviewRuler.border": "#cdd6f412",
"editorOverviewRuler.modifiedForeground": "#f9e2af",
"editorRuler.foreground": "#585b70",
"editorStickyScrollHover.background": "#313244",
"editorSuggestWidget.background": "#181825",
"editorSuggestWidget.border": "#585b70",
"editorSuggestWidget.foreground": "#cdd6f4",
"editorSuggestWidget.highlightForeground": "#cba6f7",
"editorSuggestWidget.selectedBackground": "#313244",
"editorWarning.background": "#00000000",
"editorWarning.border": "#00000000",
"editorWarning.foreground": "#fab387",
"editorWhitespace.foreground": "#9399b266",
"editorWidget.background": "#181825",
"editorWidget.foreground": "#cdd6f4",
"editorWidget.resizeBorder": "#585b70",
"errorForeground": "#f38ba8",
"extensionBadge.remoteBackground": "#89b4fa",
"extensionBadge.remoteForeground": "#11111b",
"extensionButton.prominentBackground": "#cba6f7",
"extensionButton.prominentForeground": "#11111b",
"extensionButton.prominentHoverBackground": "#dec7fa",
"extensionButton.separator": "#1e1e2e",
"extensionIcon.preReleaseForeground": "#585b70",
"extensionIcon.sponsorForeground": "#f5c2e7",
"extensionIcon.starForeground": "#f9e2af",
"extensionIcon.verifiedForeground": "#a6e3a1",
"focusBorder": "#cba6f7",
"foreground": "#cdd6f4",
"gitDecoration.addedResourceForeground": "#a6e3a1",
"gitDecoration.conflictingResourceForeground": "#cba6f7",
"gitDecoration.deletedResourceForeground": "#f38ba8",
"gitDecoration.ignoredResourceForeground": "#6c7086",
"gitDecoration.modifiedResourceForeground": "#f9e2af",
"gitDecoration.stageDeletedResourceForeground": "#f38ba8",
"gitDecoration.stageModifiedResourceForeground": "#f9e2af",
"gitDecoration.submoduleResourceForeground": "#89b4fa",
"gitDecoration.untrackedResourceForeground": "#a6e3a1",
"gitlens.closedAutolinkedIssueIconColor": "#cba6f7",
"gitlens.closedPullRequestIconColor": "#f38ba8",
"gitlens.decorations.branchAheadForegroundColor": "#a6e3a1",
"gitlens.decorations.branchBehindForegroundColor": "#fab387",
"gitlens.decorations.branchDivergedForegroundColor": "#f9e2af",
"gitlens.decorations.branchMissingUpstreamForegroundColor": "#fab387",
"gitlens.decorations.branchUnpublishedForegroundColor": "#a6e3a1",
"gitlens.decorations.statusMergingOrRebasingConflictForegroundColor": "#eba0ac",
"gitlens.decorations.statusMergingOrRebasingForegroundColor": "#f9e2af",
"gitlens.decorations.workspaceCurrentForegroundColor": "#cba6f7",
"gitlens.decorations.workspaceRepoMissingForegroundColor": "#a6adc8",
"gitlens.decorations.workspaceRepoOpenForegroundColor": "#cba6f7",
"gitlens.decorations.worktreeHasUncommittedChangesForegroundColor": "#fab387",
"gitlens.decorations.worktreeMissingForegroundColor": "#eba0ac",
"gitlens.graphChangesColumnAddedColor": "#a6e3a1",
"gitlens.graphChangesColumnDeletedColor": "#f38ba8",
"gitlens.graphLane10Color": "#f5c2e7",
"gitlens.graphLane1Color": "#cba6f7",
"gitlens.graphLane2Color": "#f9e2af",
"gitlens.graphLane3Color": "#89b4fa",
"gitlens.graphLane4Color": "#f2cdcd",
"gitlens.graphLane5Color": "#a6e3a1",
"gitlens.graphLane6Color": "#b4befe",
"gitlens.graphLane7Color": "#f5e0dc",
"gitlens.graphLane8Color": "#f38ba8",
"gitlens.graphLane9Color": "#94e2d5",
"gitlens.graphMinimapMarkerHeadColor": "#a6e3a1",
"gitlens.graphMinimapMarkerHighlightsColor": "#f9e2af",
"gitlens.graphMinimapMarkerLocalBranchesColor": "#89b4fa",
"gitlens.graphMinimapMarkerRemoteBranchesColor": "#71a4f9",
"gitlens.graphMinimapMarkerStashesColor": "#cba6f7",
"gitlens.graphMinimapMarkerTagsColor": "#f2cdcd",
"gitlens.graphMinimapMarkerUpstreamColor": "#93dd8d",
"gitlens.graphScrollMarkerHeadColor": "#a6e3a1",
"gitlens.graphScrollMarkerHighlightsColor": "#f9e2af",
"gitlens.graphScrollMarkerLocalBranchesColor": "#89b4fa",
"gitlens.graphScrollMarkerRemoteBranchesColor": "#71a4f9",
"gitlens.graphScrollMarkerStashesColor": "#cba6f7",
"gitlens.graphScrollMarkerTagsColor": "#f2cdcd",
"gitlens.graphScrollMarkerUpstreamColor": "#93dd8d",
"gitlens.gutterBackgroundColor": "#3132444d",
"gitlens.gutterForegroundColor": "#cdd6f4",
"gitlens.gutterUncommittedForegroundColor": "#cba6f7",
"gitlens.lineHighlightBackgroundColor": "#cba6f726",
"gitlens.lineHighlightOverviewRulerColor": "#cba6f7cc",
"gitlens.mergedPullRequestIconColor": "#cba6f7",
"gitlens.openAutolinkedIssueIconColor": "#a6e3a1",
"gitlens.openPullRequestIconColor": "#a6e3a1",
"gitlens.trailingLineBackgroundColor": "#00000000",
"gitlens.trailingLineForegroundColor": "#cdd6f44d",
"gitlens.unpublishedChangesIconColor": "#a6e3a1",
"gitlens.unpublishedCommitIconColor": "#a6e3a1",
"gitlens.unpulledChangesIconColor": "#fab387",
"icon.foreground": "#cba6f7",
"input.background": "#313244",
"input.border": "#00000000",
"input.foreground": "#cdd6f4",
"input.placeholderForeground": "#cdd6f473",
"inputOption.activeBackground": "#585b70",
"inputOption.activeBorder": "#cba6f7",
"inputOption.activeForeground": "#cdd6f4",
"inputValidation.errorBackground": "#f38ba8",
"inputValidation.errorBorder": "#11111b33",
"inputValidation.errorForeground": "#11111b",
"inputValidation.infoBackground": "#89b4fa",
"inputValidation.infoBorder": "#11111b33",
"inputValidation.infoForeground": "#11111b",
"inputValidation.warningBackground": "#fab387",
"inputValidation.warningBorder": "#11111b33",
"inputValidation.warningForeground": "#11111b",
"list.activeSelectionBackground": "#313244",
"list.activeSelectionForeground": "#cdd6f4",
"list.dropBackground": "#cba6f733",
"list.focusBackground": "#313244",
"list.focusForeground": "#cdd6f4",
"list.focusOutline": "#00000000",
"list.highlightForeground": "#cba6f7",
"list.hoverBackground": "#31324480",
"list.hoverForeground": "#cdd6f4",
"list.inactiveSelectionBackground": "#313244",
"list.inactiveSelectionForeground": "#cdd6f4",
"list.warningForeground": "#fab387",
"listFilterWidget.background": "#45475a",
"listFilterWidget.noMatchesOutline": "#f38ba8",
"listFilterWidget.outline": "#00000000",
"menu.background": "#1e1e2e",
"menu.border": "#1e1e2e80",
"menu.foreground": "#cdd6f4",
"menu.selectionBackground": "#585b70",
"menu.selectionBorder": "#00000000",
"menu.selectionForeground": "#cdd6f4",
"menu.separatorBackground": "#585b70",
"menubar.selectionBackground": "#45475a",
"menubar.selectionForeground": "#cdd6f4",
"merge.commonContentBackground": "#45475a",
"merge.commonHeaderBackground": "#585b70",
"merge.currentContentBackground": "#a6e3a133",
"merge.currentHeaderBackground": "#a6e3a166",
"merge.incomingContentBackground": "#89b4fa33",
"merge.incomingHeaderBackground": "#89b4fa66",
"minimap.background": "#18182580",
"minimap.errorHighlight": "#f38ba8bf",
"minimap.findMatchHighlight": "#89dceb4d",
"minimap.selectionHighlight": "#585b70bf",
"minimap.selectionOccurrenceHighlight": "#585b70bf",
"minimap.warningHighlight": "#fab387bf",
"minimapGutter.addedBackground": "#a6e3a1bf",
"minimapGutter.deletedBackground": "#f38ba8bf",
"minimapGutter.modifiedBackground": "#f9e2afbf",
"minimapSlider.activeBackground": "#cba6f799",
"minimapSlider.background": "#cba6f733",
"minimapSlider.hoverBackground": "#cba6f766",
"notificationCenter.border": "#cba6f7",
"notificationCenterHeader.background": "#181825",
"notificationCenterHeader.foreground": "#cdd6f4",
"notificationLink.foreground": "#89b4fa",
"notificationToast.border": "#cba6f7",
"notifications.background": "#181825",
"notifications.border": "#cba6f7",
"notifications.foreground": "#cdd6f4",
"notificationsErrorIcon.foreground": "#f38ba8",
"notificationsInfoIcon.foreground": "#89b4fa",
"notificationsWarningIcon.foreground": "#fab387",
"panel.background": "#1e1e2e",
"panel.border": "#585b70",
"panelSection.border": "#585b70",
"panelSection.dropBackground": "#cba6f733",
"panelTitle.activeBorder": "#cba6f7",
"panelTitle.activeForeground": "#cdd6f4",
"panelTitle.inactiveForeground": "#a6adc8",
"peekView.border": "#cba6f7",
"peekViewEditor.background": "#181825",
"peekViewEditor.matchHighlightBackground": "#89dceb4d",
"peekViewEditor.matchHighlightBorder": "#00000000",
"peekViewEditorGutter.background": "#181825",
"peekViewResult.background": "#181825",
"peekViewResult.fileForeground": "#cdd6f4",
"peekViewResult.lineForeground": "#cdd6f4",
"peekViewResult.matchHighlightBackground": "#89dceb4d",
"peekViewResult.selectionBackground": "#313244",
"peekViewResult.selectionForeground": "#cdd6f4",
"peekViewTitle.background": "#1e1e2e",
"peekViewTitleDescription.foreground": "#bac2deb3",
"peekViewTitleLabel.foreground": "#cdd6f4",
"pickerGroup.border": "#cba6f7",
"pickerGroup.foreground": "#cba6f7",
"problemsErrorIcon.foreground": "#f38ba8",
"problemsInfoIcon.foreground": "#89b4fa",
"problemsWarningIcon.foreground": "#fab387",
"progressBar.background": "#cba6f7",
"sash.hoverBorder": "#cba6f7",
"scrollbar.shadow": "#11111b",
"scrollbarSlider.activeBackground": "#31324466",
"scrollbarSlider.background": "#585b7080",
"scrollbarSlider.hoverBackground": "#6c7086",
"selection.background": "#cba6f766",
"settings.dropdownBackground": "#45475a",
"settings.dropdownListBorder": "#00000000",
"settings.focusedRowBackground": "#585b7033",
"settings.headerForeground": "#cdd6f4",
"settings.modifiedItemIndicator": "#cba6f7",
"settings.numberInputBackground": "#45475a",
"settings.numberInputBorder": "#00000000",
"settings.textInputBackground": "#45475a",
"settings.textInputBorder": "#00000000",
"sideBar.background": "#181825",
"sideBar.border": "#00000000",
"sideBar.dropBackground": "#cba6f733",
"sideBar.foreground": "#cdd6f4",
"sideBarSectionHeader.background": "#181825",
"sideBarSectionHeader.foreground": "#cdd6f4",
"sideBarTitle.foreground": "#cba6f7",
"statusBar.background": "#11111b",
"statusBar.border": "#00000000",
"statusBar.debuggingBackground": "#fab387",
"statusBar.debuggingBorder": "#00000000",
"statusBar.debuggingForeground": "#11111b",
"statusBar.foreground": "#cdd6f4",
"statusBar.noFolderBackground": "#11111b",
"statusBar.noFolderBorder": "#00000000",
"statusBar.noFolderForeground": "#cdd6f4",
"statusBarItem.activeBackground": "#585b7066",
"statusBarItem.errorBackground": "#00000000",
"statusBarItem.errorForeground": "#f38ba8",
"statusBarItem.hoverBackground": "#585b7033",
"statusBarItem.prominentBackground": "#00000000",
"statusBarItem.prominentForeground": "#cba6f7",
"statusBarItem.prominentHoverBackground": "#585b7033",
"statusBarItem.remoteBackground": "#89b4fa",
"statusBarItem.remoteForeground": "#11111b",
"statusBarItem.warningBackground": "#00000000",
"statusBarItem.warningForeground": "#fab387",
"symbolIcon.arrayForeground": "#fab387",
"symbolIcon.booleanForeground": "#cba6f7",
"symbolIcon.classForeground": "#f9e2af",
"symbolIcon.colorForeground": "#f5c2e7",
"symbolIcon.constantForeground": "#fab387",
"symbolIcon.constructorForeground": "#b4befe",
"symbolIcon.enumeratorForeground": "#f9e2af",
"symbolIcon.enumeratorMemberForeground": "#f9e2af",
"symbolIcon.eventForeground": "#f5c2e7",
"symbolIcon.fieldForeground": "#cdd6f4",
"symbolIcon.fileForeground": "#cba6f7",
"symbolIcon.folderForeground": "#cba6f7",
"symbolIcon.functionForeground": "#89b4fa",
"symbolIcon.interfaceForeground": "#f9e2af",
"symbolIcon.keyForeground": "#94e2d5",
"symbolIcon.keywordForeground": "#cba6f7",
"symbolIcon.methodForeground": "#89b4fa",
"symbolIcon.moduleForeground": "#cdd6f4",
"symbolIcon.namespaceForeground": "#f9e2af",
"symbolIcon.nullForeground": "#eba0ac",
"symbolIcon.numberForeground": "#fab387",
"symbolIcon.objectForeground": "#f9e2af",
"symbolIcon.operatorForeground": "#94e2d5",
"symbolIcon.packageForeground": "#f2cdcd",
"symbolIcon.propertyForeground": "#eba0ac",
"symbolIcon.referenceForeground": "#f9e2af",
"symbolIcon.snippetForeground": "#f2cdcd",
"symbolIcon.stringForeground": "#a6e3a1",
"symbolIcon.structForeground": "#94e2d5",
"symbolIcon.textForeground": "#cdd6f4",
"symbolIcon.typeParameterForeground": "#eba0ac",
"symbolIcon.unitForeground": "#cdd6f4",
"symbolIcon.variableForeground": "#cdd6f4",
"tab.activeBackground": "#1e1e2e",
"tab.activeBorder": "#00000000",
"tab.activeBorderTop": "#cba6f7",
"tab.activeForeground": "#cba6f7",
"tab.activeModifiedBorder": "#f9e2af",
"tab.border": "#181825",
"tab.hoverBackground": "#28283d",
"tab.hoverBorder": "#00000000",
"tab.hoverForeground": "#cba6f7",
"tab.inactiveBackground": "#181825",
"tab.inactiveForeground": "#6c7086",
"tab.inactiveModifiedBorder": "#f9e2af4d",
"tab.lastPinnedBorder": "#cba6f7",
"tab.unfocusedActiveBackground": "#181825",
"tab.unfocusedActiveBorder": "#00000000",
"tab.unfocusedActiveBorderTop": "#cba6f74d",
"tab.unfocusedInactiveBackground": "#0e0e16",
"terminal.ansiBlack": "#45475a",
"terminal.ansiBlue": "#89b4fa",
"terminal.ansiBrightBlack": "#585b70",
"terminal.ansiBrightBlue": "#74a8fc",
"terminal.ansiBrightCyan": "#6bd7ca",
"terminal.ansiBrightGreen": "#89d88b",
"terminal.ansiBrightMagenta": "#f2aede",
"terminal.ansiBrightRed": "#f37799",
"terminal.ansiBrightWhite": "#bac2de",
"terminal.ansiBrightYellow": "#ebd391",
"terminal.ansiCyan": "#94e2d5",
"terminal.ansiGreen": "#a6e3a1",
"terminal.ansiMagenta": "#f5c2e7",
"terminal.ansiRed": "#f38ba8",
"terminal.ansiWhite": "#a6adc8",
"terminal.ansiYellow": "#f9e2af",
"terminal.border": "#585b70",
"terminal.dropBackground": "#cba6f733",
"terminal.foreground": "#cdd6f4",
"terminal.inactiveSelectionBackground": "#585b7080",
"terminal.selectionBackground": "#585b70",
"terminal.tab.activeBorder": "#cba6f7",
"terminalCommandDecoration.defaultBackground": "#585b70",
"terminalCommandDecoration.errorBackground": "#f38ba8",
"terminalCommandDecoration.successBackground": "#a6e3a1",
"terminalCursor.background": "#1e1e2e",
"terminalCursor.foreground": "#f5e0dc",
"textBlockQuote.background": "#181825",
"textBlockQuote.border": "#11111b",
"textCodeBlock.background": "#1e1e2e",
"textLink.activeForeground": "#89dceb",
"textLink.foreground": "#89b4fa",
"textPreformat.foreground": "#cdd6f4",
"textSeparator.foreground": "#cba6f7",
"titleBar.activeBackground": "#11111b",
"titleBar.activeForeground": "#cdd6f4",
"titleBar.border": "#00000000",
"titleBar.inactiveBackground": "#11111b",
"titleBar.inactiveForeground": "#cdd6f480",
"tree.inactiveIndentGuidesStroke": "#45475a",
"tree.indentGuidesStroke": "#9399b2",
"walkThrough.embeddedEditorBackground": "#1e1e2e4d",
"welcomePage.progress.background": "#11111b",
"welcomePage.progress.foreground": "#cba6f7",
"welcomePage.tileBackground": "#181825",
"widget.shadow": "#18182580",
"window.activeBorder": "#00000000",
"window.inactiveBorder": "#00000000",
//"actionBar.toggledBackground": "#585b70",
//"activityErrorBadge.background": "#f14c4c",
//"activityErrorBadge.foreground": "#000000",
//"activityWarningBadge.background": "#cca700",
//"activityWarningBadge.foreground": "#000000",
//"chart.axis": "#bfbfbf66",
//"chart.guide": "#bfbfbf33",
//"chart.line": "#236b8e",
//"chat.avatarBackground": "#1f1f1f",
//"chat.avatarForeground": "#cdd6f4",
//"chat.editedFileForeground": "#e2c08d",
//"chat.requestBackground": "#1e1e2e9e",
//"chat.requestBorder": "#ffffff1a",
//"chat.slashCommandBackground": "#34414b8f",
//"chat.slashCommandForeground": "#40a6ff",
//"checkbox.selectBackground": "#181825",
//"checkbox.selectBorder": "#cba6f7",
//"clangd.inactiveRegions.background": "#1212124c",
//"commandCenter.debuggingBackground": "#fab38742",
//"commentsView.resolvedIcon": "#a6adc8",
//"commentsView.unresolvedIcon": "#00000000",
//"debugTokenExpression.name": "#c586c0",
//"debugTokenExpression.type": "#4a90e2",
//"debugTokenExpression.value": "#cccccc99",
//"debugView.exceptionLabelBackground": "#6c2022",
//"debugView.exceptionLabelForeground": "#cdd6f4",
//"debugView.stateLabelBackground": "#88888844",
//"debugView.stateLabelForeground": "#cdd6f4",
//"debugView.valueChangedHighlight": "#569cd6",
//"diffEditor.move.border": "#8b8b8b9c",
//"diffEditor.moveActive.border": "#ffa500",
//"diffEditor.unchangedCodeBackground": "#74747429",
//"diffEditor.unchangedRegionBackground": "#181825",
//"diffEditor.unchangedRegionForeground": "#cdd6f4",
//"diffEditor.unchangedRegionShadow": "#000000",
//"editor.compositionBorder": "#ffffff",
//"editor.foldPlaceholderForeground": "#808080",
//"editor.inactiveSelectionBackground": "#9399b220",
//"editor.inlineValuesBackground": "#ffc80033",
//"editor.inlineValuesForeground": "#ffffff80",
//"editor.linkedEditingBackground": "#ff00004d",
//"editor.placeholder.foreground": "#ffffff56",
//"editor.snippetFinalTabstopHighlightBorder": "#525252",
//"editor.snippetTabstopHighlightBackground": "#7c7c7c4d",
//"editor.symbolHighlightBackground": "#3e5767",
//"editor.wordHighlightTextBackground": "#9399b233",
//"editorActionList.background": "#181825",
//"editorActionList.focusBackground": "#313244",
//"editorActionList.focusForeground": "#cdd6f4",
//"editorActionList.foreground": "#cdd6f4",
//"editorActiveLineNumber.foreground": "#c6c6c6",
//"editorBracketPairGuide.activeBackground1": "#00000000",
//"editorBracketPairGuide.activeBackground2": "#00000000",
//"editorBracketPairGuide.activeBackground3": "#00000000",
//"editorBracketPairGuide.activeBackground4": "#00000000",
//"editorBracketPairGuide.activeBackground5": "#00000000",
//"editorBracketPairGuide.activeBackground6": "#00000000",
//"editorBracketPairGuide.background1": "#00000000",
//"editorBracketPairGuide.background2": "#00000000",
//"editorBracketPairGuide.background3": "#00000000",
//"editorBracketPairGuide.background4": "#00000000",
//"editorBracketPairGuide.background5": "#00000000",
//"editorBracketPairGuide.background6": "#00000000",
//"editorCommentsWidget.rangeActiveBackground": "#00000000",
//"editorCommentsWidget.rangeBackground": "#00000000",
//"editorCommentsWidget.replyInputBackground": "#1e1e2e",
//"editorCommentsWidget.resolvedBorder": "#a6adc8",
//"editorCommentsWidget.unresolvedBorder": "#00000000",
//"editorGhostText.foreground": "#ffffff56",
//"editorGroup.dropIntoPromptBackground": "#181825",
//"editorGroup.dropIntoPromptForeground": "#cdd6f4",
//"editorGroupHeader.noTabsBackground": "#1e1e2e",
//"editorGutter.commentUnresolvedGlyphForeground": "#cba6f7",
//"editorHint.foreground": "#eeeeeeb3",
//"editorHoverWidget.highlightForeground": "#cba6f7",
//"editorHoverWidget.statusBarBackground": "#1d1d2d",
//"editorIndentGuide.activeBackground1": "#585b70",
//"editorIndentGuide.activeBackground2": "#00000000",
//"editorIndentGuide.activeBackground3": "#00000000",
//"editorIndentGuide.activeBackground4": "#00000000",
//"editorIndentGuide.activeBackground5": "#00000000",
//"editorIndentGuide.activeBackground6": "#00000000",
//"editorIndentGuide.background1": "#45475a",
//"editorIndentGuide.background2": "#00000000",
//"editorIndentGuide.background3": "#00000000",
//"editorIndentGuide.background4": "#00000000",
//"editorIndentGuide.background5": "#00000000",
//"editorIndentGuide.background6": "#00000000",
//"editorLightBulbAi.foreground": "#f9e2af",
//"editorLightBulbAutoFix.foreground": "#75beff",
//"editorMarkerNavigationError.headerBackground": "#f38ba81a",
//"editorMarkerNavigationInfo.headerBackground": "#89b4fa1a",
//"editorMarkerNavigationWarning.headerBackground": "#fab3871a",
//"editorMultiCursor.primary.background": "#1e1e2e",
//"editorMultiCursor.primary.foreground": "#f5e0dc",
//"editorMultiCursor.secondary.background": "#1e1e2e",
//"editorMultiCursor.secondary.foreground": "#f5e0dc",
//"editorOverviewRuler.addedForeground": "#a6e3a199",
//"editorOverviewRuler.bracketMatchForeground": "#a0a0a0",
//"editorOverviewRuler.commentForeground": "#313244",
//"editorOverviewRuler.commentUnresolvedForeground": "#313244",
//"editorOverviewRuler.commonContentForeground": "#585b70",
//"editorOverviewRuler.currentContentForeground": "#a6e3a166",
//"editorOverviewRuler.deletedForeground": "#f38ba899",
//"editorOverviewRuler.errorForeground": "#ff1212b3",
//"editorOverviewRuler.findMatchForeground": "#d186167e",
//"editorOverviewRuler.incomingContentForeground": "#89b4fa66",
//"editorOverviewRuler.infoForeground": "#89b4fa",
//"editorOverviewRuler.inlineChatInserted": "#a6e3a110",
//"editorOverviewRuler.inlineChatRemoved": "#f38ba810",
//"editorOverviewRuler.rangeHighlightForeground": "#007acc99",
//"editorOverviewRuler.selectionHighlightForeground": "#a0a0a0cc",
//"editorOverviewRuler.warningForeground": "#fab387",
//"editorOverviewRuler.wordHighlightForeground": "#a0a0a0cc",
//"editorOverviewRuler.wordHighlightStrongForeground": "#c0a0c0cc",
//"editorOverviewRuler.wordHighlightTextForeground": "#a0a0a0cc",
//"editorPane.background": "#1e1e2e",
//"editorStickyScroll.background": "#1e1e2e",
//"editorStickyScroll.shadow": "#11111b",
//"editorSuggestWidget.focusHighlightForeground": "#cba6f7",
//"editorSuggestWidget.selectedForeground": "#cdd6f4",
//"editorSuggestWidgetStatus.foreground": "#cdd6f480",
//"editorUnicodeHighlight.background": "#00000000",
//"editorUnicodeHighlight.border": "#fab387",
//"editorUnnecessaryCode.opacity": "#000000aa",
//"editorWatermark.foreground": "#cdd6f499",
//"editorWidget.border": "#454545",
//"extensionButton.background": "#cba6f7",
//"extensionButton.foreground": "#11111b",
//"extensionButton.hoverBackground": "#dec7fa",
//"git.blame.editorDecorationForeground": "#7f849c",
//"gitDecoration.renamedResourceForeground": "#73c991",
//"gitlens.decorations.addedForegroundColor": "#a6e3a1",
//"gitlens.decorations.branchUpToDateForegroundColor": "#cdd6f4",
//"gitlens.decorations.copiedForegroundColor": "#73c991",
//"gitlens.decorations.deletedForegroundColor": "#f38ba8",
//"gitlens.decorations.ignoredForegroundColor": "#6c7086",
//"gitlens.decorations.modifiedForegroundColor": "#f9e2af",
//"gitlens.decorations.renamedForegroundColor": "#73c991",
//"gitlens.decorations.untrackedForegroundColor": "#a6e3a1",
//"gitlens.graphMinimapMarkerPullRequestsColor": "#c76801",
//"gitlens.graphScrollMarkerPullRequestsColor": "#c76801",
//"gitlens.launchpadIndicatorAttentionColor": "#d8af1b",
//"gitlens.launchpadIndicatorAttentionHoverColor": "#d8af1b",
//"gitlens.launchpadIndicatorBlockedColor": "#c74e39",
//"gitlens.launchpadIndicatorBlockedHoverColor": "#c74e39",
//"gitlens.launchpadIndicatorMergeableColor": "#3fb950",
//"gitlens.launchpadIndicatorMergeableHoverColor": "#3fb950",
//"inlineChat.background": "#181825",
//"inlineChat.border": "#454545",
//"inlineChat.foreground": "#cdd6f4",
//"inlineChat.shadow": "#18182580",
//"inlineChatDiff.inserted": "#a6e3a10d",
//"inlineChatDiff.removed": "#f38ba80d",
//"inlineChatInput.background": "#313244",
//"inlineChatInput.border": "#454545",
//"inlineChatInput.focusBorder": "#cba6f7",
//"inlineChatInput.placeholderForeground": "#cdd6f473",
//"inlineEdit.border": "#00000000",
//"inlineEdit.indicator.background": "#cba6f7",
//"inlineEdit.indicator.border": "#00000000",
//"inlineEdit.indicator.foreground": "#11111b",
//"inlineEdit.modifiedBackground": "#a6e3a10a",
//"inlineEdit.modifiedChangedLineBackground": "#00000000",
//"inlineEdit.modifiedChangedTextBackground": "#a6e3a11a",
//"inlineEdit.originalBackground": "#f38ba80a",
//"inlineEdit.originalChangedLineBackground": "#00000000",
//"inlineEdit.originalChangedTextBackground": "#f38ba81a",
//"inputOption.hoverBackground": "#5a5d5e80",
//"interactive.activeCodeBorder": "#cba6f7",
//"interactive.inactiveCodeBorder": "#313244",
//"keybindingLabel.background": "#8080802b",
//"keybindingLabel.border": "#33333399",
//"keybindingLabel.bottomBorder": "#44444499",
//"keybindingLabel.foreground": "#cccccc",
//"keybindingTable.headerBackground": "#cdd6f40a",
//"keybindingTable.rowsBackground": "#cdd6f40a",
//"list.deemphasizedForeground": "#8c8c8c",
//"list.dropBetweenBackground": "#cba6f7",
//"list.errorForeground": "#f88070",
//"list.filterMatchBackground": "#3e5767",
//"list.filterMatchBorder": "#89dceb33",
//"list.focusHighlightForeground": "#cba6f7",
//"list.invalidItemForeground": "#b89500",
//"listFilterWidget.shadow": "#18182580",
//"markdown.extension.editor.codeSpan.background": "#00000000",
//"markdown.extension.editor.codeSpan.border": "#9399b240",
//"markdown.extension.editor.formattingMark.foreground": "#9399b266",
//"markdown.extension.editor.trailingSpace.background": "#585b7099",
//"mergeEditor.change.background": "#9bb95533",
//"mergeEditor.change.word.background": "#9ccc2c33",
//"mergeEditor.changeBase.background": "#4b1818",
//"mergeEditor.changeBase.word.background": "#6f1313",
//"mergeEditor.conflict.handled.minimapOverViewRuler": "#adaca8ee",
//"mergeEditor.conflict.handledFocused.border": "#c1c1c1cc",
//"mergeEditor.conflict.handledUnfocused.border": "#86868649",
//"mergeEditor.conflict.input1.background": "#a6e3a129",
//"mergeEditor.conflict.input2.background": "#89b4fa29",
//"mergeEditor.conflict.unhandled.minimapOverViewRuler": "#fcba03",
//"mergeEditor.conflict.unhandledFocused.border": "#ffa600",
//"mergeEditor.conflict.unhandledUnfocused.border": "#ffa6007a",
//"mergeEditor.conflictingLines.background": "#ffea0047",
//"minimap.foregroundOpacity": "#000000",
//"minimap.infoHighlight": "#89b4fa",
//"multiDiffEditor.background": "#1e1e2e",
//"multiDiffEditor.headerBackground": "#262626",
//"notebook.cellBorderColor": "#313244",
//"notebook.cellEditorBackground": "#181825",
//"notebook.cellInsertionIndicator": "#cba6f7",
//"notebook.cellStatusBarItemHoverBackground": "#ffffff26",
//"notebook.cellToolbarSeparator": "#80808059",
//"notebook.editorBackground": "#1e1e2e",
//"notebook.focusedCellBorder": "#cba6f7",
//"notebook.focusedEditorBorder": "#cba6f7",
//"notebook.inactiveFocusedCellBorder": "#313244",
//"notebook.selectedCellBackground": "#313244",
//"notebook.selectedCellBorder": "#313244",
//"notebook.symbolHighlightBackground": "#ffffff0b",
//"notebookEditorOverviewRuler.runningCellForeground": "#a6e3a1",
//"notebookScrollbarSlider.activeBackground": "#31324466",
//"notebookScrollbarSlider.background": "#585b7080",
//"notebookScrollbarSlider.hoverBackground": "#6c7086",
//"notebookStatusErrorIcon.foreground": "#f38ba8",
//"notebookStatusRunningIcon.foreground": "#cdd6f4",
//"notebookStatusSuccessIcon.foreground": "#a6e3a1",
//"panel.dropBorder": "#cdd6f4",
//"panelInput.border": "#00000000",
//"panelSectionHeader.background": "#80808033",
//"panelStickyScroll.background": "#1e1e2e",
//"panelStickyScroll.shadow": "#11111b",
//"peekViewEditorStickyScroll.background": "#181825",
//"ports.iconRunningProcessForeground": "#89b4fa",
//"profileBadge.background": "#4d4d4d",
//"profileBadge.foreground": "#ffffff",
//"profiles.sashBorder": "#585b70",
//"quickInput.background": "#181825",
//"quickInput.foreground": "#cdd6f4",
//"quickInputList.focusBackground": "#313244",
//"quickInputList.focusForeground": "#cdd6f4",
//"quickInputTitle.background": "#ffffff1b",
//"radio.activeBackground": "#585b70",
//"radio.activeBorder": "#cba6f7",
//"radio.activeForeground": "#cdd6f4",
//"radio.inactiveBorder": "#cdd6f433",
//"radio.inactiveHoverBackground": "#5a5d5e80",
//"scmGraph.foreground1": "#ffb000",
//"scmGraph.foreground2": "#dc267f",
//"scmGraph.foreground3": "#994f00",
//"scmGraph.foreground4": "#40b0a6",
//"scmGraph.foreground5": "#b66dff",
//"scmGraph.historyItemBaseRefColor": "#ea5c00",
//"scmGraph.historyItemHoverAdditionsForeground": "#81b88b",
//"scmGraph.historyItemHoverDefaultLabelBackground": "#45475a",
//"scmGraph.historyItemHoverDefaultLabelForeground": "#cdd6f4",
//"scmGraph.historyItemHoverDeletionsForeground": "#c74e39",
//"scmGraph.historyItemHoverLabelForeground": "#11111b",
//"scmGraph.historyItemRefColor": "#89b4fa",
//"scmGraph.historyItemRemoteRefColor": "#cba6f7",
//"search.resultsInfoForeground": "#cdd6f4a6",
//"searchEditor.findMatchBackground": "#3e5767a8",
//"searchEditor.findMatchBorder": "#89dceb22",
//"searchEditor.textInputBorder": "#00000000",
//"settings.checkboxBackground": "#45475a",
//"settings.checkboxBorder": "#00000000",
//"settings.checkboxForeground": "#cba6f7",
//"settings.dropdownBorder": "#cba6f7",
//"settings.dropdownForeground": "#cdd6f4",
//"settings.focusedRowBorder": "#cba6f7",
//"settings.headerBorder": "#585b70",
//"settings.numberInputForeground": "#cdd6f4",
//"settings.rowHoverBackground": "#31324427",
//"settings.sashBorder": "#585b70",
//"settings.settingsHeaderHoverForeground": "#cdd6f4b3",
//"settings.textInputForeground": "#cdd6f4",
//"sideBarStickyScroll.background": "#181825",
//"sideBarStickyScroll.shadow": "#11111b",
//"sideBarTitle.background": "#181825",
//"sideBySideEditor.horizontalBorder": "#585b70",
//"sideBySideEditor.verticalBorder": "#585b70",
//"simpleFindWidget.sashBorder": "#454545",
//"statusBar.focusBorder": "#cdd6f4",
//"statusBarItem.compactHoverBackground": "#ffffff33",
//"statusBarItem.errorHoverBackground": "#585b7033",
//"statusBarItem.errorHoverForeground": "#cdd6f4",
//"statusBarItem.focusBorder": "#cdd6f4",
//"statusBarItem.hoverForeground": "#cdd6f4",
//"statusBarItem.offlineBackground": "#6c1717",
//"statusBarItem.offlineForeground": "#11111b",
//"statusBarItem.offlineHoverBackground": "#585b7033",
//"statusBarItem.offlineHoverForeground": "#cdd6f4",
//"statusBarItem.prominentHoverForeground": "#cdd6f4",
//"statusBarItem.remoteHoverBackground": "#585b7033",
//"statusBarItem.remoteHoverForeground": "#cdd6f4",
//"statusBarItem.warningHoverBackground": "#585b7033",
//"statusBarItem.warningHoverForeground": "#cdd6f4",
//"tab.dragAndDropBorder": "#cba6f7",
//"tab.selectedBackground": "#1e1e2e",
//"tab.selectedBorderTop": "#cba6f7",
//"tab.selectedForeground": "#cba6f7",
//"tab.unfocusedActiveForeground": "#cba6f780",
//"tab.unfocusedActiveModifiedBorder": "#f9e2af80",
//"tab.unfocusedHoverBackground": "#28283d80",
//"tab.unfocusedHoverBorder": "#00000000",
//"tab.unfocusedHoverForeground": "#cba6f780",
//"tab.unfocusedInactiveForeground": "#6c708680",
//"tab.unfocusedInactiveModifiedBorder": "#f9e2af27",
//"terminal.findMatchBackground": "#5e3f53",
//"terminal.findMatchHighlightBackground": "#3e5767",
//"terminal.hoverHighlightBackground": "#89dceb20",
//"terminal.initialHintForeground": "#ffffff56",
//"terminalCommandGuide.foreground": "#313244",
//"terminalOverviewRuler.border": "#cdd6f412",
//"terminalOverviewRuler.cursorForeground": "#a0a0a0cc",
//"terminalOverviewRuler.findMatchForeground": "#d186167e",
//"terminalStickyScrollHover.background": "#2a2d2e",
//"testing.coverCountBadgeBackground": "#45475a",
//"testing.coverCountBadgeForeground": "#cdd6f4",
//"testing.coveredBackground": "#a6e3a11a",
//"testing.coveredBorder": "#a6e3a114",
//"testing.coveredGutterBackground": "#a6e3a110",
//"testing.iconErrored": "#f14c4c",
//"testing.iconErrored.retired": "#f14c4cb3",
//"testing.iconFailed": "#f14c4c",
//"testing.iconFailed.retired": "#f14c4cb3",
//"testing.iconPassed": "#73c991",
//"testing.iconPassed.retired": "#73c991b3",
//"testing.iconQueued": "#cca700",
//"testing.iconQueued.retired": "#cca700b3",
//"testing.iconSkipped": "#848484",
//"testing.iconSkipped.retired": "#848484b3",
//"testing.iconUnset": "#848484",
//"testing.iconUnset.retired": "#848484b3",
//"testing.message.error.badgeBackground": "#f14c4c",
//"testing.message.error.badgeBorder": "#f14c4c",
//"testing.message.error.badgeForeground": "#000000",
//"testing.message.info.decorationForeground": "#cdd6f480",
//"testing.messagePeekBorder": "#89b4fa",
//"testing.messagePeekHeaderBackground": "#89b4fa1a",
//"testing.peekBorder": "#f38ba8",
//"testing.peekHeaderBackground": "#f38ba81a",
//"testing.runAction": "#73c991",
//"testing.uncoveredBackground": "#f38ba81a",
//"testing.uncoveredBorder": "#f38ba814",
//"testing.uncoveredBranchBackground": "#493446",
//"testing.uncoveredGutterBackground": "#f38ba827",
//"textPreformat.background": "#ffffff1a",
//"toolbar.activeBackground": "#63666750",
//"toolbar.hoverBackground": "#5a5d5e50",
//"tree.tableColumnsBorder": "#cccccc20",
//"tree.tableOddRowsBackground": "#cdd6f40a",
//"walkthrough.stepTitle.foreground": "#ffffff",
//"welcomePage.tileBorder": "#ffffff1a",
//"welcomePage.tileHoverBackground": "#1d1d2d",
//"activityBarTop.activeBackground": null,
//"activityBarTop.background": null,
//"contrastActiveBorder": null,
//"contrastBorder": null,
//"diffEditor.insertedTextBorder": null,
//"diffEditor.removedTextBorder": null,
//"diffEditorGutter.insertedLineBackground": null,
//"diffEditorGutter.removedLineBackground": null,
//"editor.findMatchForeground": null,
//"editor.findMatchHighlightForeground": null,
//"editor.selectionForeground": null,
//"editor.snippetFinalTabstopHighlightBackground": null,
//"editor.snippetTabstopHighlightBorder": null,
//"editor.symbolHighlightBorder": null,
//"editor.wordHighlightBorder": null,
//"editor.wordHighlightStrongBorder": null,
//"editor.wordHighlightTextBorder": null,
//"editorGhostText.background": null,
//"editorGhostText.border": null,
//"editorGroup.dropIntoPromptBorder": null,
//"editorGroup.focusedEmptyBorder": null,
//"editorGroupHeader.border": null,
//"editorGroupHeader.tabsBorder": null,
//"editorHint.border": null,
//"editorLineNumber.dimmedForeground": null,
//"editorStickyScroll.border": null,
//"editorSuggestWidget.selectedIconForeground": null,
//"editorUnnecessaryCode.border": null,
//"list.activeSelectionIconForeground": null,
//"list.focusAndSelectionOutline": null,
//"list.inactiveFocusBackground": null,
//"list.inactiveFocusOutline": null,
//"list.inactiveSelectionIconForeground": null,
//"menubar.selectionBorder": null,
//"merge.border": null,
//"multiDiffEditor.border": null,
//"notebook.cellHoverBackground": null,
//"notebook.focusedCellBackground": null,
//"notebook.inactiveSelectedCellBorder": null,
//"notebook.outputContainerBackgroundColor": null,
//"notebook.outputContainerBorderColor": null,
//"outputView.background": null,
//"outputViewStickyScroll.background": null,
//"panelSectionHeader.border": null,
//"panelSectionHeader.foreground": null,
//"panelStickyScroll.border": null,
//"panelTitle.border": null,
//"quickInput.list.focusBackground": null,
//"quickInputList.focusIconForeground": null,
//"radio.inactiveBackground": null,
//"radio.inactiveForeground": null,
//"sideBarActivityBarTop.border": null,
//"sideBarSectionHeader.border": null,
//"sideBarStickyScroll.border": null,
//"sideBarTitle.border": null,
//"terminal.background": null,
//"terminal.findMatchBorder": null,
//"terminal.findMatchHighlightBorder": null,
//"terminal.selectionForeground": null,
//"terminalStickyScroll.background": null,
//"terminalStickyScroll.border": null,
//"testing.message.error.lineBackground": null,
//"testing.message.info.lineBackground": null,
//"toolbar.hoverOutline": null,
//"welcomePage.background": null,
//"widget.border": null
},
"tokenColors": [
{
"scope": [
"text",
"source",
"variable.other.readwrite",
"punctuation.definition.variable"
],
"settings": {
"foreground": "#CDD6F4"
}
},
{
"scope": "punctuation",
"settings": {
"foreground": "#9399B2",
"fontStyle": ""
}
},
{
"scope": [
"comment",
"punctuation.definition.comment"
],
"settings": {
"foreground": "#6C7086",
"fontStyle": "italic"
}
},
{
"scope": [
"string",
"punctuation.definition.string"
],
"settings": {
"foreground": "#A6E3A1"
}
},
{
"scope": "constant.character.escape",
"settings": {
"foreground": "#F5C2E7"
}
},
{
"scope": [
"constant.numeric",
"variable.other.constant",
"entity.name.constant",
"constant.language.boolean",
"constant.language.false",
"constant.language.true",
"keyword.other.unit.user-defined",
"keyword.other.unit.suffix.floating-point"
],
"settings": {
"foreground": "#FAB387"
}
},
{
"scope": [
"keyword",
"keyword.operator.word",
"keyword.operator.new",
"variable.language.super",
"support.type.primitive",
"storage.type",
"storage.modifier",
"punctuation.definition.keyword"
],
"settings": {
"foreground": "#CBA6F7",
"fontStyle": ""
}
},
{
"scope": "entity.name.tag.documentation",
"settings": {
"foreground": "#CBA6F7"
}
},
{
"scope": [
"keyword.operator",
"punctuation.accessor",