-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtaufiq-purple-theme.jsonc
1482 lines (1482 loc) · 52.5 KB
/
taufiq-purple-theme.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": {
"actionBar.toggledBackground": "#383a49",
"activityBar.activeBorder": "#0078d4",
"activityBar.background": "#1b0a21",
"activityBar.border": "#2f0e3b",
"activityBar.foreground": "#d7d7d7",
"activityBar.inactiveForeground": "#868686",
"activityBarBadge.background": "#0078d4",
"activityBarBadge.foreground": "#ffffff",
"badge.background": "#616161",
"badge.foreground": "#f8f8f8",
"button.background": "#0078d4",
"button.border": "#ffffff12",
"button.foreground": "#ffffff",
"button.hoverBackground": "#026ec1",
"button.secondaryBackground": "#313131",
"button.secondaryForeground": "#cccccc",
"button.secondaryHoverBackground": "#3c3c3c",
"chat.editedFileForeground": "#e2c08d",
"chat.slashCommandBackground": "#34414b",
"chat.slashCommandForeground": "#40a6ff",
"checkbox.background": "#313131",
"checkbox.border": "#3c3c3c",
"commandCenter.background": "#1b0a21",
"debugToolBar.background": "#181818",
"descriptionForeground": "#9d9d9d",
"dropdown.background": "#313131",
"dropdown.border": "#3c3c3c",
"dropdown.foreground": "#cccccc",
"dropdown.listBackground": "#1f1f1f",
"editor.background": "#1b0a21",
"editor.findMatchBackground": "#9e6a03",
"editor.foreground": "#cccccc",
"editor.inactiveSelectionBackground": "#3a3d41",
"editor.selectionHighlightBackground": "#add6ff26",
"editorGroup.border": "#2f0e3b",
"editorGroupHeader.tabsBackground": "#231829",
"editorGroupHeader.tabsBorder": "#250c2e",
"editorGutter.addedBackground": "#2ea043",
"editorGutter.deletedBackground": "#f85149",
"editorGutter.modifiedBackground": "#0078d4",
"editorIndentGuide.activeBackground1": "#707070",
"editorIndentGuide.background1": "#404040",
"editorLineNumber.activeForeground": "#cccccc",
"editorLineNumber.foreground": "#6e7681",
"editorOverviewRuler.border": "#010409",
"editorWidget.background": "#1b0a21",
"editorWidget.border": "#2f0e3b",
"errorForeground": "#f85149",
"focusBorder": "#0078d4",
"foreground": "#cccccc",
"icon.foreground": "#cccccc",
"input.background": "#1b0a21",
"input.border": "#3c3c3c",
"input.foreground": "#cccccc",
"input.placeholderForeground": "#989898",
"inputOption.activeBackground": "#2489db82",
"inputOption.activeBorder": "#2488db",
"keybindingLabel.foreground": "#cccccc",
"list.activeSelectionIconForeground": "#ffffff",
"list.dropBackground": "#383b3d",
"menu.background": "#1f1f1f",
"menu.border": "#454545",
"menu.foreground": "#cccccc",
"menu.selectionBackground": "#0078d4",
"menu.separatorBackground": "#454545",
"notificationCenterHeader.background": "#1f1f1f",
"notificationCenterHeader.foreground": "#cccccc",
"notifications.background": "#1f1f1f",
"notifications.border": "#2b2b2b",
"notifications.foreground": "#cccccc",
"panel.background": "#1b0a21",
"panel.border": "#2f0e3b",
"panelInput.border": "#2b2b2b",
"panelTitle.activeBorder": "#0078d4",
"panelTitle.activeForeground": "#cccccc",
"panelTitle.inactiveForeground": "#9d9d9d",
"peekViewEditor.background": "#1f1f1f",
"peekViewEditor.matchHighlightBackground": "#bb800966",
"peekViewResult.background": "#1f1f1f",
"peekViewResult.matchHighlightBackground": "#bb800966",
"pickerGroup.border": "#3c3c3c",
"ports.iconRunningProcessForeground": "#369432",
"progressBar.background": "#0078d4",
"quickInput.background": "#1b0a21",
"quickInput.foreground": "#cccccc",
"scrollbarSlider.activeBackground": "#4f247a",
"scrollbarSlider.background": "#30123bcc",
"scrollbarSlider.hoverBackground": "#3f1a5a",
"settings.dropdownBackground": "#313131",
"settings.dropdownBorder": "#3c3c3c",
"settings.headerForeground": "#ffffff",
"settings.modifiedItemIndicator": "#bb800966",
"sideBar.background": "#1b0a21",
"sideBar.border": "#2f0e3b",
"sideBar.foreground": "#cccccc",
"sideBarSectionHeader.background": "#1b0a21",
"sideBarSectionHeader.border": "#2f0e3b",
"sideBarSectionHeader.foreground": "#cccccc",
"sideBarTitle.foreground": "#cccccc",
"statusBar.background": "#181818",
"statusBar.border": "#2b2b2b",
"statusBar.debuggingBackground": "#0078d4",
"statusBar.debuggingForeground": "#ffffff",
"statusBar.focusBorder": "#0078d4",
"statusBar.foreground": "#cccccc",
"statusBar.noFolderBackground": "#1f1f1f",
"statusBarItem.focusBorder": "#0078d4",
"statusBarItem.prominentBackground": "#6e768166",
"statusBarItem.remoteBackground": "#0078d4",
"statusBarItem.remoteForeground": "#ffffff",
"tab.activeBackground": "#1b0a21",
"tab.activeBorder": "#1b0a21",
"tab.activeBorderTop": "#9b1aca",
"tab.activeForeground": "#ffffff",
"tab.border": "#2f0e3b",
"tab.hoverBackground": "#641f7d",
"tab.inactiveBackground": "#24112c",
"tab.inactiveForeground": "#9d9d9d",
"tab.lastPinnedBorder": "#cccccc33",
"tab.selectedBackground": "#222222",
"tab.selectedBorderTop": "#6caddf",
"tab.selectedForeground": "#ffffffa0",
"tab.unfocusedActiveBorder": "#220d2a",
"tab.unfocusedActiveBorderTop": "#560f6f",
"tab.unfocusedHoverBackground": "#411951",
"terminal.background": "#1b0a21",
"terminal.border": "#2f0e3b",
"terminal.foreground": "#cccccc",
"terminal.inactiveSelectionBackground": "#3a3d41",
"terminal.tab.activeBorder": "#9b1aca",
"textBlockQuote.background": "#2b2b2b",
"textBlockQuote.border": "#616161",
"textCodeBlock.background": "#2b2b2b",
"textLink.activeForeground": "#4daafc",
"textLink.foreground": "#4daafc",
"textPreformat.background": "#3c3c3c",
"textPreformat.foreground": "#d0d0d0",
"textSeparator.foreground": "#21262d",
"titleBar.activeBackground": "#1b0a21",
"titleBar.activeForeground": "#cccccc",
"titleBar.border": "#2f0e3b",
"titleBar.inactiveBackground": "#25122d",
"titleBar.inactiveForeground": "#9d9d9d",
"welcomePage.progress.foreground": "#0078d4",
"welcomePage.tileBackground": "#2b2b2b",
"widget.border": "#313131",
//"activityBar.dropBorder": "#d7d7d7",
//"activityBarTop.activeBorder": "#e7e7e7",
//"activityBarTop.dropBorder": "#e7e7e7",
//"activityBarTop.foreground": "#e7e7e7",
//"activityBarTop.inactiveForeground": "#e7e7e799",
//"activityErrorBadge.background": "#f14c4c",
//"activityErrorBadge.foreground": "#000000",
//"activityWarningBadge.background": "#cca700",
//"activityWarningBadge.foreground": "#000000",
//"banner.background": "#04395e",
//"banner.foreground": "#ffffff",
//"banner.iconForeground": "#3794ff",
//"breadcrumb.activeSelectionForeground": "#e0e0e0",
//"breadcrumb.background": "#1b0a21",
//"breadcrumb.focusForeground": "#e0e0e0",
//"breadcrumb.foreground": "#cccccccc",
//"breadcrumbPicker.background": "#1b0a21",
//"button.separator": "#ffffff66",
//"chart.axis": "#bfbfbf66",
//"chart.guide": "#bfbfbf33",
//"chart.line": "#236b8e",
//"charts.blue": "#3794ff",
//"charts.foreground": "#cccccc",
//"charts.green": "#89d185",
//"charts.lines": "#cccccc80",
//"charts.orange": "#d18616",
//"charts.purple": "#b180d7",
//"charts.red": "#f14c4c",
//"charts.yellow": "#cca700",
//"chat.avatarBackground": "#1f1f1f",
//"chat.avatarForeground": "#cccccc",
//"chat.requestBackground": "#1b0a219e",
//"chat.requestBorder": "#ffffff1a",
//"checkbox.foreground": "#cccccc",
//"checkbox.selectBackground": "#1b0a21",
//"checkbox.selectBorder": "#cccccc",
//"commandCenter.activeBackground": "#ffffff14",
//"commandCenter.activeBorder": "#cccccc4d",
//"commandCenter.activeForeground": "#cccccc",
//"commandCenter.border": "#cccccc33",
//"commandCenter.debuggingBackground": "#0078d442",
//"commandCenter.foreground": "#cccccc",
//"commandCenter.inactiveBorder": "#9d9d9d40",
//"commandCenter.inactiveForeground": "#9d9d9d",
//"commentsView.resolvedIcon": "#cccccc80",
//"commentsView.unresolvedIcon": "#0078d4",
//"debugConsole.errorForeground": "#f85149",
//"debugConsole.infoForeground": "#3794ff",
//"debugConsole.sourceForeground": "#cccccc",
//"debugConsole.warningForeground": "#cca700",
//"debugConsoleInputIcon.foreground": "#cccccc",
//"debugExceptionWidget.background": "#420b0d",
//"debugExceptionWidget.border": "#a31515",
//"debugIcon.breakpointCurrentStackframeForeground": "#ffcc00",
//"debugIcon.breakpointDisabledForeground": "#848484",
//"debugIcon.breakpointForeground": "#e51400",
//"debugIcon.breakpointStackframeForeground": "#89d185",
//"debugIcon.breakpointUnverifiedForeground": "#848484",
//"debugIcon.continueForeground": "#75beff",
//"debugIcon.disconnectForeground": "#f48771",
//"debugIcon.pauseForeground": "#75beff",
//"debugIcon.restartForeground": "#89d185",
//"debugIcon.startForeground": "#89d185",
//"debugIcon.stepBackForeground": "#75beff",
//"debugIcon.stepIntoForeground": "#75beff",
//"debugIcon.stepOutForeground": "#75beff",
//"debugIcon.stepOverForeground": "#75beff",
//"debugIcon.stopForeground": "#f48771",
//"debugTokenExpression.boolean": "#4e94ce",
//"debugTokenExpression.error": "#f48771",
//"debugTokenExpression.name": "#c586c0",
//"debugTokenExpression.number": "#b5cea8",
//"debugTokenExpression.string": "#ce9178",
//"debugTokenExpression.type": "#4a90e2",
//"debugTokenExpression.value": "#cccccc99",
//"debugView.exceptionLabelBackground": "#6c2022",
//"debugView.exceptionLabelForeground": "#cccccc",
//"debugView.stateLabelBackground": "#88888844",
//"debugView.stateLabelForeground": "#cccccc",
//"debugView.valueChangedHighlight": "#569cd6",
//"diffEditor.diagonalFill": "#cccccc33",
//"diffEditor.insertedLineBackground": "#9bb95533",
//"diffEditor.insertedTextBackground": "#9ccc2c33",
//"diffEditor.move.border": "#8b8b8b9c",
//"diffEditor.moveActive.border": "#ffa500",
//"diffEditor.removedLineBackground": "#ff000033",
//"diffEditor.removedTextBackground": "#ff000033",
//"diffEditor.unchangedCodeBackground": "#74747429",
//"diffEditor.unchangedRegionBackground": "#1b0a21",
//"diffEditor.unchangedRegionForeground": "#cccccc",
//"diffEditor.unchangedRegionShadow": "#000000",
//"disabledForeground": "#cccccc80",
//"editor.compositionBorder": "#ffffff",
//"editor.findMatchHighlightBackground": "#ea5c0055",
//"editor.findRangeHighlightBackground": "#3a3d4166",
//"editor.focusedStackFrameHighlightBackground": "#7abd7a4d",
//"editor.foldBackground": "#264f784d",
//"editor.foldPlaceholderForeground": "#808080",
//"editor.hoverHighlightBackground": "#264f7840",
//"editor.inlineValuesBackground": "#ffc80033",
//"editor.inlineValuesForeground": "#ffffff80",
//"editor.lineHighlightBorder": "#282828",
//"editor.linkedEditingBackground": "#ff00004d",
//"editor.placeholder.foreground": "#ffffff56",
//"editor.rangeHighlightBackground": "#ffffff0b",
//"editor.selectionBackground": "#264f78",
//"editor.snippetFinalTabstopHighlightBorder": "#525252",
//"editor.snippetTabstopHighlightBackground": "#7c7c7c4d",
//"editor.stackFrameHighlightBackground": "#ffff0033",
//"editor.symbolHighlightBackground": "#ea5c0055",
//"editor.wordHighlightBackground": "#575757b8",
//"editor.wordHighlightStrongBackground": "#004972b8",
//"editor.wordHighlightTextBackground": "#575757b8",
//"editorActionList.background": "#1b0a21",
//"editorActionList.focusBackground": "#04395e",
//"editorActionList.focusForeground": "#ffffff",
//"editorActionList.foreground": "#cccccc",
//"editorActiveLineNumber.foreground": "#c6c6c6",
//"editorBracketHighlight.foreground1": "#ffd700",
//"editorBracketHighlight.foreground2": "#da70d6",
//"editorBracketHighlight.foreground3": "#179fff",
//"editorBracketHighlight.foreground4": "#00000000",
//"editorBracketHighlight.foreground5": "#00000000",
//"editorBracketHighlight.foreground6": "#00000000",
//"editorBracketHighlight.unexpectedBracket.foreground": "#ff1212cc",
//"editorBracketMatch.background": "#0064001a",
//"editorBracketMatch.border": "#888888",
//"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",
//"editorCodeLens.foreground": "#999999",
//"editorCommentsWidget.rangeActiveBackground": "#0078d41a",
//"editorCommentsWidget.rangeBackground": "#0078d41a",
//"editorCommentsWidget.replyInputBackground": "#252526",
//"editorCommentsWidget.resolvedBorder": "#cccccc80",
//"editorCommentsWidget.unresolvedBorder": "#0078d4",
//"editorCursor.foreground": "#aeafad",
//"editorError.foreground": "#f14c4c",
//"editorGhostText.foreground": "#ffffff56",
//"editorGroup.dropBackground": "#53595d80",
//"editorGroup.dropIntoPromptBackground": "#1b0a21",
//"editorGroup.dropIntoPromptForeground": "#cccccc",
//"editorGroupHeader.noTabsBackground": "#1b0a21",
//"editorGutter.background": "#1b0a21",
//"editorGutter.commentGlyphForeground": "#cccccc",
//"editorGutter.commentRangeForeground": "#37373d",
//"editorGutter.commentUnresolvedGlyphForeground": "#cccccc",
//"editorGutter.foldingControlForeground": "#cccccc",
//"editorHint.foreground": "#eeeeeeb3",
//"editorHoverWidget.background": "#1b0a21",
//"editorHoverWidget.border": "#2f0e3b",
//"editorHoverWidget.foreground": "#cccccc",
//"editorHoverWidget.highlightForeground": "#2aaaff",
//"editorHoverWidget.statusBarBackground": "#200c28",
//"editorIndentGuide.activeBackground": "#e3e4e229",
//"editorIndentGuide.activeBackground2": "#00000000",
//"editorIndentGuide.activeBackground3": "#00000000",
//"editorIndentGuide.activeBackground4": "#00000000",
//"editorIndentGuide.activeBackground5": "#00000000",
//"editorIndentGuide.activeBackground6": "#00000000",
//"editorIndentGuide.background": "#e3e4e229",
//"editorIndentGuide.background2": "#00000000",
//"editorIndentGuide.background3": "#00000000",
//"editorIndentGuide.background4": "#00000000",
//"editorIndentGuide.background5": "#00000000",
//"editorIndentGuide.background6": "#00000000",
//"editorInfo.foreground": "#3794ff",
//"editorInlayHint.background": "#6161611a",
//"editorInlayHint.foreground": "#969696",
//"editorInlayHint.parameterBackground": "#6161611a",
//"editorInlayHint.parameterForeground": "#969696",
//"editorInlayHint.typeBackground": "#6161611a",
//"editorInlayHint.typeForeground": "#969696",
//"editorLightBulb.foreground": "#ffcc00",
//"editorLightBulbAi.foreground": "#ffcc00",
//"editorLightBulbAutoFix.foreground": "#75beff",
//"editorLink.activeForeground": "#4e94ce",
//"editorMarkerNavigation.background": "#1b0a21",
//"editorMarkerNavigationError.background": "#f14c4c",
//"editorMarkerNavigationError.headerBackground": "#f14c4c1a",
//"editorMarkerNavigationInfo.background": "#3794ff",
//"editorMarkerNavigationInfo.headerBackground": "#3794ff1a",
//"editorMarkerNavigationWarning.background": "#cca700",
//"editorMarkerNavigationWarning.headerBackground": "#cca7001a",
//"editorMultiCursor.primary.foreground": "#aeafad",
//"editorMultiCursor.secondary.foreground": "#aeafad",
//"editorOverviewRuler.addedForeground": "#2ea04399",
//"editorOverviewRuler.bracketMatchForeground": "#a0a0a0",
//"editorOverviewRuler.commentForeground": "#37373d",
//"editorOverviewRuler.commentUnresolvedForeground": "#37373d",
//"editorOverviewRuler.commonContentForeground": "#60606066",
//"editorOverviewRuler.currentContentForeground": "#40c8ae80",
//"editorOverviewRuler.deletedForeground": "#f8514999",
//"editorOverviewRuler.errorForeground": "#ff1212b3",
//"editorOverviewRuler.findMatchForeground": "#d186167e",
//"editorOverviewRuler.incomingContentForeground": "#40a6ff80",
//"editorOverviewRuler.infoForeground": "#3794ff",
//"editorOverviewRuler.inlineChatInserted": "#9ccc2c1f",
//"editorOverviewRuler.inlineChatRemoved": "#ff00001f",
//"editorOverviewRuler.modifiedForeground": "#0078d499",
//"editorOverviewRuler.rangeHighlightForeground": "#007acc99",
//"editorOverviewRuler.selectionHighlightForeground": "#a0a0a0cc",
//"editorOverviewRuler.warningForeground": "#cca700",
//"editorOverviewRuler.wordHighlightForeground": "#a0a0a0cc",
//"editorOverviewRuler.wordHighlightStrongForeground": "#c0a0c0cc",
//"editorOverviewRuler.wordHighlightTextForeground": "#a0a0a0cc",
//"editorPane.background": "#1b0a21",
//"editorRuler.foreground": "#5a5a5a",
//"editorStickyScroll.background": "#1b0a21",
//"editorStickyScroll.shadow": "#000000",
//"editorStickyScrollHover.background": "#2a2d2e",
//"editorSuggestWidget.background": "#1b0a21",
//"editorSuggestWidget.border": "#2f0e3b",
//"editorSuggestWidget.focusHighlightForeground": "#2aaaff",
//"editorSuggestWidget.foreground": "#cccccc",
//"editorSuggestWidget.highlightForeground": "#2aaaff",
//"editorSuggestWidget.selectedBackground": "#04395e",
//"editorSuggestWidget.selectedForeground": "#ffffff",
//"editorSuggestWidget.selectedIconForeground": "#ffffff",
//"editorSuggestWidgetStatus.foreground": "#cccccc80",
//"editorUnicodeHighlight.border": "#cca700",
//"editorUnnecessaryCode.opacity": "#000000aa",
//"editorWarning.foreground": "#cca700",
//"editorWatermark.foreground": "#cccccc99",
//"editorWhitespace.foreground": "#e3e4e229",
//"editorWidget.foreground": "#cccccc",
//"extensionBadge.remoteBackground": "#0078d4",
//"extensionBadge.remoteForeground": "#ffffff",
//"extensionButton.background": "#0078d4",
//"extensionButton.foreground": "#ffffff",
//"extensionButton.hoverBackground": "#026ec1",
//"extensionButton.prominentBackground": "#0078d4",
//"extensionButton.prominentForeground": "#ffffff",
//"extensionButton.prominentHoverBackground": "#026ec1",
//"extensionButton.separator": "#ffffff66",
//"extensionIcon.preReleaseForeground": "#1d9271",
//"extensionIcon.sponsorForeground": "#d758b3",
//"extensionIcon.starForeground": "#ff8e00",
//"extensionIcon.verifiedForeground": "#4daafc",
//"git.blame.editorDecorationForeground": "#999999",
//"gitDecoration.addedResourceForeground": "#81b88b",
//"gitDecoration.conflictingResourceForeground": "#e4676b",
//"gitDecoration.deletedResourceForeground": "#c74e39",
//"gitDecoration.ignoredResourceForeground": "#8c8c8c",
//"gitDecoration.modifiedResourceForeground": "#e2c08d",
//"gitDecoration.renamedResourceForeground": "#73c991",
//"gitDecoration.stageDeletedResourceForeground": "#c74e39",
//"gitDecoration.stageModifiedResourceForeground": "#e2c08d",
//"gitDecoration.submoduleResourceForeground": "#8db9e2",
//"gitDecoration.untrackedResourceForeground": "#73c991",
//"gitlens.closedAutolinkedIssueIconColor": "#a371f7",
//"gitlens.closedPullRequestIconColor": "#f85149",
//"gitlens.decorations.addedForegroundColor": "#81b88b",
//"gitlens.decorations.branchAheadForegroundColor": "#35b15e",
//"gitlens.decorations.branchBehindForegroundColor": "#b15e35",
//"gitlens.decorations.branchDivergedForegroundColor": "#d8af1b",
//"gitlens.decorations.branchMissingUpstreamForegroundColor": "#c74e39",
//"gitlens.decorations.branchUnpublishedForegroundColor": "#cccccc",
//"gitlens.decorations.branchUpToDateForegroundColor": "#cccccc",
//"gitlens.decorations.copiedForegroundColor": "#73c991",
//"gitlens.decorations.deletedForegroundColor": "#c74e39",
//"gitlens.decorations.ignoredForegroundColor": "#8c8c8c",
//"gitlens.decorations.modifiedForegroundColor": "#e2c08d",
//"gitlens.decorations.renamedForegroundColor": "#73c991",
//"gitlens.decorations.statusMergingOrRebasingConflictForegroundColor": "#c74e39",
//"gitlens.decorations.statusMergingOrRebasingForegroundColor": "#d8af1b",
//"gitlens.decorations.untrackedForegroundColor": "#73c991",
//"gitlens.decorations.workspaceCurrentForegroundColor": "#35b15e",
//"gitlens.decorations.workspaceRepoMissingForegroundColor": "#909090",
//"gitlens.decorations.workspaceRepoOpenForegroundColor": "#35b15e",
//"gitlens.decorations.worktreeHasUncommittedChangesForegroundColor": "#e2c08d",
//"gitlens.decorations.worktreeMissingForegroundColor": "#c74e39",
//"gitlens.graphChangesColumnAddedColor": "#347d39",
//"gitlens.graphChangesColumnDeletedColor": "#c93c37",
//"gitlens.graphLane10Color": "#2ece9d",
//"gitlens.graphLane1Color": "#15a0bf",
//"gitlens.graphLane2Color": "#0669f7",
//"gitlens.graphLane3Color": "#8e00c2",
//"gitlens.graphLane4Color": "#c517b6",
//"gitlens.graphLane5Color": "#d90171",
//"gitlens.graphLane6Color": "#cd0101",
//"gitlens.graphLane7Color": "#f25d2e",
//"gitlens.graphLane8Color": "#f2ca33",
//"gitlens.graphLane9Color": "#7bd938",
//"gitlens.graphMinimapMarkerHeadColor": "#05e617",
//"gitlens.graphMinimapMarkerHighlightsColor": "#fbff0a",
//"gitlens.graphMinimapMarkerLocalBranchesColor": "#3087cf",
//"gitlens.graphMinimapMarkerPullRequestsColor": "#c76801",
//"gitlens.graphMinimapMarkerRemoteBranchesColor": "#2b5e88",
//"gitlens.graphMinimapMarkerStashesColor": "#b34db3",
//"gitlens.graphMinimapMarkerTagsColor": "#6b562e",
//"gitlens.graphMinimapMarkerUpstreamColor": "#09ae17",
//"gitlens.graphScrollMarkerHeadColor": "#05e617",
//"gitlens.graphScrollMarkerHighlightsColor": "#fbff0a",
//"gitlens.graphScrollMarkerLocalBranchesColor": "#3087cf",
//"gitlens.graphScrollMarkerPullRequestsColor": "#c76801",
//"gitlens.graphScrollMarkerRemoteBranchesColor": "#2b5e88",
//"gitlens.graphScrollMarkerStashesColor": "#b34db3",
//"gitlens.graphScrollMarkerTagsColor": "#6b562e",
//"gitlens.graphScrollMarkerUpstreamColor": "#09ae17",
//"gitlens.gutterBackgroundColor": "#ffffff13",
//"gitlens.gutterForegroundColor": "#bebebe",
//"gitlens.gutterUncommittedForegroundColor": "#00bcf299",
//"gitlens.launchpadIndicatorAttentionColor": "#d8af1b",
//"gitlens.launchpadIndicatorAttentionHoverColor": "#d8af1b",
//"gitlens.launchpadIndicatorBlockedColor": "#c74e39",
//"gitlens.launchpadIndicatorBlockedHoverColor": "#c74e39",
//"gitlens.launchpadIndicatorMergeableColor": "#3fb950",
//"gitlens.launchpadIndicatorMergeableHoverColor": "#3fb950",
//"gitlens.lineHighlightBackgroundColor": "#00bcf233",
//"gitlens.lineHighlightOverviewRulerColor": "#00bcf299",
//"gitlens.mergedPullRequestIconColor": "#a371f7",
//"gitlens.openAutolinkedIssueIconColor": "#3fb950",
//"gitlens.openPullRequestIconColor": "#3fb950",
//"gitlens.trailingLineBackgroundColor": "#00000000",
//"gitlens.trailingLineForegroundColor": "#99999959",
//"gitlens.unpublishedChangesIconColor": "#35b15e",
//"gitlens.unpublishedCommitIconColor": "#35b15e",
//"gitlens.unpulledChangesIconColor": "#b15e35",
//"inlineChat.background": "#1b0a21",
//"inlineChat.border": "#2f0e3b",
//"inlineChat.foreground": "#cccccc",
//"inlineChat.shadow": "#0000005c",
//"inlineChatDiff.inserted": "#9ccc2c1a",
//"inlineChatDiff.removed": "#ff00001a",
//"inlineChatInput.background": "#1b0a21",
//"inlineChatInput.border": "#2f0e3b",
//"inlineChatInput.focusBorder": "#0078d4",
//"inlineChatInput.placeholderForeground": "#989898",
//"inlineEdit.border": "#3c3c3c",
//"inlineEdit.indicator.background": "#0078d4",
//"inlineEdit.indicator.border": "#ffffff66",
//"inlineEdit.indicator.foreground": "#ffffff",
//"inlineEdit.modifiedBackground": "#9ccc2c14",
//"inlineEdit.modifiedChangedLineBackground": "#00000000",
//"inlineEdit.modifiedChangedTextBackground": "#9ccc2c33",
//"inlineEdit.originalBackground": "#ff000014",
//"inlineEdit.originalChangedLineBackground": "#00000000",
//"inlineEdit.originalChangedTextBackground": "#ff000033",
//"inputOption.activeForeground": "#ffffff",
//"inputOption.hoverBackground": "#5a5d5e80",
//"inputValidation.errorBackground": "#5a1d1d",
//"inputValidation.errorBorder": "#be1100",
//"inputValidation.infoBackground": "#063b49",
//"inputValidation.infoBorder": "#007acc",
//"inputValidation.warningBackground": "#352a05",
//"inputValidation.warningBorder": "#b89500",
//"interactive.activeCodeBorder": "#007acc",
//"interactive.inactiveCodeBorder": "#37373d",
//"keybindingLabel.background": "#8080802b",
//"keybindingLabel.border": "#33333399",
//"keybindingLabel.bottomBorder": "#44444499",
//"keybindingTable.headerBackground": "#cccccc0a",
//"keybindingTable.rowsBackground": "#cccccc0a",
//"list.activeSelectionBackground": "#04395e",
//"list.activeSelectionForeground": "#ffffff",
//"list.deemphasizedForeground": "#8c8c8c",
//"list.dropBetweenBackground": "#cccccc",
//"list.errorForeground": "#f88070",
//"list.filterMatchBackground": "#ea5c0055",
//"list.focusHighlightForeground": "#2aaaff",
//"list.focusOutline": "#0078d4",
//"list.highlightForeground": "#2aaaff",
//"list.hoverBackground": "#2a2d2e",
//"list.inactiveSelectionBackground": "#37373d",
//"list.invalidItemForeground": "#b89500",
//"list.warningForeground": "#cca700",
//"listFilterWidget.background": "#1b0a21",
//"listFilterWidget.noMatchesOutline": "#be1100",
//"listFilterWidget.outline": "#00000000",
//"listFilterWidget.shadow": "#0000005c",
//"menu.selectionForeground": "#ffffff",
//"menubar.selectionBackground": "#5a5d5e50",
//"menubar.selectionForeground": "#cccccc",
//"merge.commonContentBackground": "#60606029",
//"merge.commonHeaderBackground": "#60606066",
//"merge.currentContentBackground": "#40c8ae33",
//"merge.currentHeaderBackground": "#40c8ae80",
//"merge.incomingContentBackground": "#40a6ff33",
//"merge.incomingHeaderBackground": "#40a6ff80",
//"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": "#40c8ae33",
//"mergeEditor.conflict.input2.background": "#40a6ff33",
//"mergeEditor.conflict.unhandled.minimapOverViewRuler": "#fcba03",
//"mergeEditor.conflict.unhandledFocused.border": "#ffa600",
//"mergeEditor.conflict.unhandledUnfocused.border": "#ffa6007a",
//"mergeEditor.conflictingLines.background": "#ffea0047",
//"minimap.errorHighlight": "#ff1212b3",
//"minimap.findMatchHighlight": "#d18616",
//"minimap.foregroundOpacity": "#000000",
//"minimap.infoHighlight": "#3794ff",
//"minimap.selectionHighlight": "#264f78",
//"minimap.selectionOccurrenceHighlight": "#676767",
//"minimap.warningHighlight": "#cca700",
//"minimapGutter.addedBackground": "#2ea043",
//"minimapGutter.deletedBackground": "#f85149",
//"minimapGutter.modifiedBackground": "#0078d4",
//"minimapSlider.activeBackground": "#4f247a80",
//"minimapSlider.background": "#30123b66",
//"minimapSlider.hoverBackground": "#3f1a5a80",
//"multiDiffEditor.background": "#1b0a21",
//"multiDiffEditor.border": "#2f0e3b",
//"multiDiffEditor.headerBackground": "#262626",
//"notebook.cellBorderColor": "#37373d",
//"notebook.cellEditorBackground": "#1b0a21",
//"notebook.cellInsertionIndicator": "#0078d4",
//"notebook.cellStatusBarItemHoverBackground": "#ffffff26",
//"notebook.cellToolbarSeparator": "#80808059",
//"notebook.editorBackground": "#1b0a21",
//"notebook.focusedCellBorder": "#0078d4",
//"notebook.focusedEditorBorder": "#0078d4",
//"notebook.inactiveFocusedCellBorder": "#37373d",
//"notebook.selectedCellBackground": "#37373d",
//"notebook.selectedCellBorder": "#37373d",
//"notebook.symbolHighlightBackground": "#ffffff0b",
//"notebookEditorOverviewRuler.runningCellForeground": "#89d185",
//"notebookScrollbarSlider.activeBackground": "#4f247a",
//"notebookScrollbarSlider.background": "#30123bcc",
//"notebookScrollbarSlider.hoverBackground": "#3f1a5a",
//"notebookStatusErrorIcon.foreground": "#f85149",
//"notebookStatusRunningIcon.foreground": "#cccccc",
//"notebookStatusSuccessIcon.foreground": "#89d185",
//"notificationCenter.border": "#313131",
//"notificationLink.foreground": "#4daafc",
//"notificationToast.border": "#313131",
//"notificationsErrorIcon.foreground": "#f14c4c",
//"notificationsInfoIcon.foreground": "#3794ff",
//"notificationsWarningIcon.foreground": "#cca700",
//"panel.dropBorder": "#cccccc",
//"panelSection.border": "#2f0e3b",
//"panelSection.dropBackground": "#53595d80",
//"panelSectionHeader.background": "#80808033",
//"panelStickyScroll.background": "#1b0a21",
//"panelStickyScroll.shadow": "#000000",
//"peekView.border": "#3794ff",
//"peekViewEditorGutter.background": "#1f1f1f",
//"peekViewEditorStickyScroll.background": "#1f1f1f",
//"peekViewResult.fileForeground": "#ffffff",
//"peekViewResult.lineForeground": "#bbbbbb",
//"peekViewResult.selectionBackground": "#3399ff33",
//"peekViewResult.selectionForeground": "#ffffff",
//"peekViewTitle.background": "#252526",
//"peekViewTitleDescription.foreground": "#ccccccb3",
//"peekViewTitleLabel.foreground": "#ffffff",
//"pickerGroup.foreground": "#3794ff",
//"problemsErrorIcon.foreground": "#f14c4c",
//"problemsInfoIcon.foreground": "#3794ff",
//"problemsWarningIcon.foreground": "#cca700",
//"profileBadge.background": "#4d4d4d",
//"profileBadge.foreground": "#ffffff",
//"profiles.sashBorder": "#2f0e3b",
//"quickInputList.focusBackground": "#04395e",
//"quickInputList.focusForeground": "#ffffff",
//"quickInputList.focusIconForeground": "#ffffff",
//"quickInputTitle.background": "#ffffff1b",
//"radio.activeBackground": "#2489db82",
//"radio.activeBorder": "#2488db",
//"radio.activeForeground": "#ffffff",
//"radio.inactiveBorder": "#ffffff33",
//"radio.inactiveHoverBackground": "#5a5d5e80",
//"sash.hoverBorder": "#0078d4",
//"scmGraph.foreground1": "#ffb000",
//"scmGraph.foreground2": "#dc267f",
//"scmGraph.foreground3": "#994f00",
//"scmGraph.foreground4": "#40b0a6",
//"scmGraph.foreground5": "#b66dff",
//"scmGraph.historyItemBaseRefColor": "#ea5c00",
//"scmGraph.historyItemHoverAdditionsForeground": "#81b88b",
//"scmGraph.historyItemHoverDefaultLabelBackground": "#616161",
//"scmGraph.historyItemHoverDefaultLabelForeground": "#cccccc",
//"scmGraph.historyItemHoverDeletionsForeground": "#c74e39",
//"scmGraph.historyItemHoverLabelForeground": "#ffffff",
//"scmGraph.historyItemRefColor": "#3794ff",
//"scmGraph.historyItemRemoteRefColor": "#b180d7",
//"scrollbar.shadow": "#000000",
//"search.resultsInfoForeground": "#cccccca6",
//"searchEditor.findMatchBackground": "#ea5c0038",
//"searchEditor.textInputBorder": "#3c3c3c",
//"settings.checkboxBackground": "#313131",
//"settings.checkboxBorder": "#3c3c3c",
//"settings.checkboxForeground": "#cccccc",
//"settings.dropdownForeground": "#cccccc",
//"settings.dropdownListBorder": "#2f0e3b",
//"settings.focusedRowBackground": "#2a2d2e99",
//"settings.focusedRowBorder": "#0078d4",
//"settings.headerBorder": "#2f0e3b",
//"settings.numberInputBackground": "#1b0a21",
//"settings.numberInputBorder": "#3c3c3c",
//"settings.numberInputForeground": "#cccccc",
//"settings.rowHoverBackground": "#2a2d2e4d",
//"settings.sashBorder": "#2f0e3b",
//"settings.settingsHeaderHoverForeground": "#ffffffb3",
//"settings.textInputBackground": "#1b0a21",
//"settings.textInputBorder": "#3c3c3c",
//"settings.textInputForeground": "#cccccc",
//"sideBar.dropBackground": "#53595d80",
//"sideBarActivityBarTop.border": "#2f0e3b",
//"sideBarStickyScroll.background": "#1b0a21",
//"sideBarStickyScroll.shadow": "#000000",
//"sideBarTitle.background": "#1b0a21",
//"sideBySideEditor.horizontalBorder": "#2f0e3b",
//"sideBySideEditor.verticalBorder": "#2f0e3b",
//"simpleFindWidget.sashBorder": "#454545",
//"statusBar.debuggingBorder": "#2b2b2b",
//"statusBar.noFolderBorder": "#2b2b2b",
//"statusBar.noFolderForeground": "#cccccc",
//"statusBarItem.activeBackground": "#ffffff2e",
//"statusBarItem.compactHoverBackground": "#ffffff33",
//"statusBarItem.errorBackground": "#b91007",
//"statusBarItem.errorForeground": "#ffffff",
//"statusBarItem.errorHoverBackground": "#ffffff1f",
//"statusBarItem.errorHoverForeground": "#cccccc",
//"statusBarItem.hoverBackground": "#ffffff1f",
//"statusBarItem.hoverForeground": "#cccccc",
//"statusBarItem.offlineBackground": "#6c1717",
//"statusBarItem.offlineForeground": "#ffffff",
//"statusBarItem.offlineHoverBackground": "#ffffff1f",
//"statusBarItem.offlineHoverForeground": "#cccccc",
//"statusBarItem.prominentForeground": "#cccccc",
//"statusBarItem.prominentHoverBackground": "#0000004d",
//"statusBarItem.prominentHoverForeground": "#cccccc",
//"statusBarItem.remoteHoverBackground": "#ffffff1f",
//"statusBarItem.remoteHoverForeground": "#cccccc",
//"statusBarItem.warningBackground": "#7a6400",
//"statusBarItem.warningForeground": "#ffffff",
//"statusBarItem.warningHoverBackground": "#ffffff1f",
//"statusBarItem.warningHoverForeground": "#cccccc",
//"symbolIcon.arrayForeground": "#cccccc",
//"symbolIcon.booleanForeground": "#cccccc",
//"symbolIcon.classForeground": "#ee9d28",
//"symbolIcon.colorForeground": "#cccccc",
//"symbolIcon.constantForeground": "#cccccc",
//"symbolIcon.constructorForeground": "#b180d7",
//"symbolIcon.enumeratorForeground": "#ee9d28",
//"symbolIcon.enumeratorMemberForeground": "#75beff",
//"symbolIcon.eventForeground": "#ee9d28",
//"symbolIcon.fieldForeground": "#75beff",
//"symbolIcon.fileForeground": "#cccccc",
//"symbolIcon.folderForeground": "#cccccc",
//"symbolIcon.functionForeground": "#b180d7",
//"symbolIcon.interfaceForeground": "#75beff",
//"symbolIcon.keyForeground": "#cccccc",
//"symbolIcon.keywordForeground": "#cccccc",
//"symbolIcon.methodForeground": "#b180d7",
//"symbolIcon.moduleForeground": "#cccccc",
//"symbolIcon.namespaceForeground": "#cccccc",
//"symbolIcon.nullForeground": "#cccccc",
//"symbolIcon.numberForeground": "#cccccc",
//"symbolIcon.objectForeground": "#cccccc",
//"symbolIcon.operatorForeground": "#cccccc",
//"symbolIcon.packageForeground": "#cccccc",
//"symbolIcon.propertyForeground": "#cccccc",
//"symbolIcon.referenceForeground": "#cccccc",
//"symbolIcon.snippetForeground": "#cccccc",
//"symbolIcon.stringForeground": "#cccccc",
//"symbolIcon.structForeground": "#cccccc",
//"symbolIcon.textForeground": "#cccccc",
//"symbolIcon.typeParameterForeground": "#cccccc",
//"symbolIcon.unitForeground": "#cccccc",
//"symbolIcon.variableForeground": "#75beff",
//"tab.activeModifiedBorder": "#3399cc",
//"tab.dragAndDropBorder": "#ffffff",
//"tab.inactiveModifiedBorder": "#3399cc80",
//"tab.unfocusedActiveBackground": "#1b0a21",
//"tab.unfocusedActiveForeground": "#ffffff80",
//"tab.unfocusedActiveModifiedBorder": "#3399cc80",
//"tab.unfocusedInactiveBackground": "#24112c",
//"tab.unfocusedInactiveForeground": "#9d9d9d80",
//"tab.unfocusedInactiveModifiedBorder": "#3399cc40",
//"terminal.ansiBlack": "#000000",
//"terminal.ansiBlue": "#2472c8",
//"terminal.ansiBrightBlack": "#666666",
//"terminal.ansiBrightBlue": "#3b8eea",
//"terminal.ansiBrightCyan": "#29b8db",
//"terminal.ansiBrightGreen": "#23d18b",
//"terminal.ansiBrightMagenta": "#d670d6",
//"terminal.ansiBrightRed": "#f14c4c",
//"terminal.ansiBrightWhite": "#e5e5e5",
//"terminal.ansiBrightYellow": "#f5f543",
//"terminal.ansiCyan": "#11a8cd",
//"terminal.ansiGreen": "#0dbc79",
//"terminal.ansiMagenta": "#bc3fbc",
//"terminal.ansiRed": "#cd3131",
//"terminal.ansiWhite": "#e5e5e5",
//"terminal.ansiYellow": "#e5e510",
//"terminal.dropBackground": "#53595d80",
//"terminal.findMatchBackground": "#9e6a03",
//"terminal.findMatchHighlightBackground": "#ea5c0055",
//"terminal.hoverHighlightBackground": "#264f7820",
//"terminal.initialHintForeground": "#ffffff56",
//"terminal.selectionBackground": "#264f78",
//"terminalCommandDecoration.defaultBackground": "#ffffff40",
//"terminalCommandDecoration.errorBackground": "#f14c4c",
//"terminalCommandDecoration.successBackground": "#1b81a8",
//"terminalCommandGuide.foreground": "#37373d",
//"terminalOverviewRuler.border": "#010409",
//"terminalOverviewRuler.cursorForeground": "#a0a0a0cc",
//"terminalOverviewRuler.findMatchForeground": "#d186167e",
//"terminalStickyScrollHover.background": "#2a2d2e",
//"testing.coverCountBadgeBackground": "#616161",
//"testing.coverCountBadgeForeground": "#f8f8f8",
//"testing.coveredBackground": "#9ccc2c33",
//"testing.coveredBorder": "#9ccc2c26",
//"testing.coveredGutterBackground": "#9ccc2c1f",
//"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": "#cccccc80",
//"testing.messagePeekBorder": "#3794ff",
//"testing.messagePeekHeaderBackground": "#3794ff1a",
//"testing.peekBorder": "#f14c4c",
//"testing.peekHeaderBackground": "#f14c4c1a",
//"testing.runAction": "#73c991",
//"testing.uncoveredBackground": "#ff000033",
//"testing.uncoveredBorder": "#ff000026",
//"testing.uncoveredBranchBackground": "#760613",
//"testing.uncoveredGutterBackground": "#ff00004d",
//"toolbar.activeBackground": "#63666750",
//"toolbar.hoverBackground": "#5a5d5e50",
//"tree.inactiveIndentGuidesStroke": "#58585866",
//"tree.indentGuidesStroke": "#585858",
//"tree.tableColumnsBorder": "#cccccc20",
//"tree.tableOddRowsBackground": "#cccccc0a",
//"walkThrough.embeddedEditorBackground": "#00000066",
//"walkthrough.stepTitle.foreground": "#ffffff",
//"welcomePage.progress.background": "#1b0a21",
//"welcomePage.tileBorder": "#ffffff1a",
//"welcomePage.tileHoverBackground": "#200c28",
//"widget.shadow": "#0000005c",
//"activityBar.activeBackground": null,
//"activityBar.activeFocusBorder": null,
//"activityBarTop.activeBackground": null,
//"activityBarTop.background": null,
//"contrastActiveBorder": null,
//"contrastBorder": null,
//"debugToolBar.border": null,
//"diffEditor.border": null,
//"diffEditor.insertedTextBorder": null,
//"diffEditor.removedTextBorder": null,
//"diffEditorGutter.insertedLineBackground": null,
//"diffEditorGutter.removedLineBackground": null,
//"diffEditorOverview.insertedForeground": null,
//"diffEditorOverview.removedForeground": null,
//"editor.findMatchBorder": null,
//"editor.findMatchForeground": null,
//"editor.findMatchHighlightBorder": null,
//"editor.findMatchHighlightForeground": null,
//"editor.findRangeHighlightBorder": null,
//"editor.lineHighlightBackground": null,
//"editor.rangeHighlightBorder": null,
//"editor.selectionForeground": null,
//"editor.selectionHighlightBorder": null,
//"editor.snippetFinalTabstopHighlightBackground": null,
//"editor.snippetTabstopHighlightBorder": null,
//"editor.symbolHighlightBorder": null,
//"editor.wordHighlightBorder": null,
//"editor.wordHighlightStrongBorder": null,
//"editor.wordHighlightTextBorder": null,
//"editorCursor.background": null,
//"editorError.background": null,
//"editorError.border": null,
//"editorGhostText.background": null,
//"editorGhostText.border": null,
//"editorGroup.dropIntoPromptBorder": null,
//"editorGroup.emptyBackground": null,
//"editorGroup.focusedEmptyBorder": null,
//"editorGroupHeader.border": null,
//"editorHint.border": null,
//"editorInfo.background": null,
//"editorInfo.border": null,
//"editorLineNumber.dimmedForeground": null,
//"editorMultiCursor.primary.background": null,
//"editorMultiCursor.secondary.background": null,
//"editorOverviewRuler.background": null,
//"editorStickyScroll.border": null,
//"editorUnicodeHighlight.background": null,
//"editorUnnecessaryCode.border": null,
//"editorWarning.background": null,
//"editorWarning.border": null,
//"editorWidget.resizeBorder": null,
//"inputValidation.errorForeground": null,
//"inputValidation.infoForeground": null,
//"inputValidation.warningForeground": null,
//"list.filterMatchBorder": null,
//"list.focusAndSelectionOutline": null,
//"list.focusBackground": null,
//"list.focusForeground": null,
//"list.hoverForeground": null,
//"list.inactiveFocusBackground": null,
//"list.inactiveFocusOutline": null,
//"list.inactiveSelectionForeground": null,
//"list.inactiveSelectionIconForeground": null,
//"menu.selectionBorder": null,
//"menubar.selectionBorder": null,
//"merge.border": null,
//"minimap.background": 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,
//"peekViewEditor.matchHighlightBorder": null,
//"quickInput.list.focusBackground": null,
//"radio.inactiveBackground": null,
//"radio.inactiveForeground": null,
//"searchEditor.findMatchBorder": null,
//"selection.background": null,
//"sideBarStickyScroll.border": null,
//"sideBarTitle.border": null,
//"tab.hoverBorder": null,
//"tab.hoverForeground": null,
//"tab.unfocusedHoverBorder": null,
//"tab.unfocusedHoverForeground": null,
//"terminal.findMatchBorder": null,
//"terminal.findMatchHighlightBorder": null,
//"terminal.selectionForeground": null,
//"terminalCursor.background": null,
//"terminalCursor.foreground": null,
//"terminalStickyScroll.background": null,
//"terminalStickyScroll.border": null,
//"testing.message.error.lineBackground": null,
//"testing.message.info.lineBackground": null,
//"toolbar.hoverOutline": null,
//"welcomePage.background": null,
//"window.activeBorder": null,
//"window.inactiveBorder": null
},
"tokenColors": [
{
"scope": [
"meta.embedded",
"source.groovy.embedded",
"string meta.image.inline.markdown",
"variable.legacy.builtin.python"
],
"settings": {
"foreground": "#D4D4D4"
}
},
{
"scope": "emphasis",
"settings": {
"fontStyle": "italic"
}
},
{
"scope": "strong",
"settings": {
"fontStyle": "bold"
}
},
{
"scope": "header",
"settings": {
"foreground": "#000080"
}
},
{
"scope": "comment",
"settings": {
"foreground": "#6A9955"
}
},
{
"scope": "constant.language",
"settings": {
"foreground": "#569CD6"
}
},
{
"scope": [
"constant.numeric",
"variable.other.enummember",
"keyword.operator.plus.exponent",
"keyword.operator.minus.exponent"
],
"settings": {
"foreground": "#B5CEA8"
}
},
{
"scope": "constant.regexp",
"settings": {
"foreground": "#646695"
}
},
{
"scope": "entity.name.tag",
"settings": {
"foreground": "#569CD6"
}
},
{
"scope": [
"entity.name.tag.css",
"entity.name.tag.less"
],
"settings": {
"foreground": "#D7BA7D"
}
},
{
"scope": "entity.other.attribute-name",
"settings": {
"foreground": "#9CDCFE"
}
},
{
"scope": [
"entity.other.attribute-name.class.css",
"source.css entity.other.attribute-name.class",
"entity.other.attribute-name.id.css",
"entity.other.attribute-name.parent-selector.css",
"entity.other.attribute-name.parent.less",
"source.css entity.other.attribute-name.pseudo-class",
"entity.other.attribute-name.pseudo-element.css",
"source.css.less entity.other.attribute-name.id",