-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolor_theme.json
4793 lines (4793 loc) · 122 KB
/
color_theme.json
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.activeBorder": "#00000000",
"activityBar.background": "#00000000",
"activityBar.border": "#00000000",
"activityBar.dropBorder": "#00000000",
"activityBar.foreground": "#29b6f6",
"activityBar.inactiveForeground": "#01589b99",
"activityBarBadge.background": "#df00fe",
"activityBarBadge.foreground": "#29b6f6",
"activityBarTop.foreground": "#cc28f1",
"activityBarTop.inactiveForeground": "#750080",
"badge.background": "#0c1125",
"badge.foreground": "#29b6f6",
"breadcrumb.foreground": "#546e7a",
"button.background": "#01589b99",
"editor.background": "#00000000",
"editor.findMatchBackground": "#0a5860",
"editor.findMatchHighlightBackground": "#4d576b",
"editor.foreground": "#a1b9b9",
"editor.lineHighlightBackground": "#b151fa19",
"editor.lineHighlightBorder": "#aaaaaa00",
"editor.selectionHighlightBackground": "#01589b99",
"editor.wordHighlightBackground": "#00000000",
"editorCursor.foreground": "#cc28f1",
"editorError.foreground": "#ff000088",
"editorGroup.border": "#8715d8",
"editorGroup.dropBackground": "#7a15d86d",
"editorGroupHeader.tabsBackground": "#00000000",
"editorGroupHeader.tabsBorder": "#00000000",
"editorInfo.foreground": "#00ff0088",
"editorLineNumber.activeForeground": "#cc28f1",
"editorLineNumber.foreground": "#01589b99",
"editorOverviewRuler.border": "#00000000",
"editorStickyScroll.background": "#22032c",
"editorSuggestWidget.border": "#01589b99",
"editorWarning.foreground": "#ffe60033",
"editorWidget.background": "#0c1125",
"editorWidget.border": "#1979c2",
"focusBorder": "#00000000",
"gitDecoration.addedResourceForeground": "#81bae6",
"gitDecoration.ignoredResourceForeground": "#81bae6",
"gitDecoration.modifiedResourceForeground": "#81bae6",
"gitDecoration.renamedResourceForeground": "#81bae6",
"gitDecoration.untrackedResourceForeground": "#81bae6",
"icon.foreground": "#29b6f6",
"input.background": "#0c1125",
"input.border": "#01589b99",
"list.activeSelectionBackground": "#01589b99",
"list.focusAndSelectionOutline": "#00000000",
"list.focusOutline": "#29b6f6",
"list.hoverBackground": "#01589b99",
"list.inactiveSelectionBackground": "#01589b99",
"menubar.selectionForeground": "#df00fe",
"panel.background": "#00000000",
"panel.border": "#00000000",
"panelTitle.activeBorder": "#29b6f6",
"panelTitle.activeForeground": "#29b6f6",
"panelTitle.inactiveForeground": "#01589b99",
"peekView.border": "#1979c2",
"peekViewEditor.background": "#00000000",
"peekViewEditor.matchHighlightBackground": "#00000000",
"peekViewEditor.matchHighlightBorder": "#00000000",
"peekViewEditorGutter.background": "#00000000",
"peekViewResult.background": "#00000000",
"peekViewTitle.background": "#00000000",
"selection.background": "#01589b99",
"settings.dropdownBackground": "#0c1125",
"sideBar.background": "#00000000",
"sideBar.border": "#00000000",
"sideBar.foreground": "#7eacd4",
"sideBarSectionHeader.background": "#00000000",
"sideBarSectionHeader.border": "#00000000",
"sideBarSectionHeader.foreground": "#29b6f6",
"sideBarTitle.foreground": "#29b6f6",
"statusBar.background": "#00000000",
"statusBar.border": "#00000000",
"statusBar.debuggingBackground": "#00000000",
"statusBar.focusBorder": "#00000000",
"statusBar.foreground": "#1979c2",
"statusBar.noFolderBackground": "#00000000",
"statusBarItem.activeBackground": "#00000000",
"statusBarItem.remoteBackground": "#a608eb",
"tab.activeBackground": "#00000000",
"tab.activeBorder": "#29b6f6",
"tab.activeBorderTop": "#00000000",
"tab.activeModifiedBorder": "#00000000",
"tab.border": "#00000000",
"tab.inactiveBackground": "#00000000",
"tab.inactiveModifiedBorder": "#00000000",
"tab.lastPinnedBorder": "#00000000",
"terminal.ansiBlue": "#0f973e",
"terminal.ansiBrightBlue": "#1db954",
"terminal.ansiBrightCyan": "#74ea7c",
"terminal.ansiBrightRed": "#75ea7d",
"terminal.ansiCyan": "#128638",
"terminal.ansiGreen": "#75ea7d",
"terminal.ansiMagenta": "#1db954",
"terminal.ansiYellow": "#c1f9c5",
"terminal.background": "#000000",
"terminal.border": "#00000000",
"terminal.foreground": "#c1f9c5",
"terminalCursor.foreground": "#c1f9c5",
"textBlockQuote.background": "#a117f2",
"textLink.foreground": "#df00fe",
"titleBar.activeBackground": "#1f0c25",
"titleBar.activeForeground": "#29b6f6",
"titleBar.inactiveBackground": "#0c1125",
"tree.indentGuidesStroke": "#00000000",
"welcomePage.background": "#121212",
"welcomePage.progress.background": "#121212",
"welcomePage.progress.foreground": "#fdf101",
"welcomePage.tileBackground": "#750080",
"widget.shadow": "#00000000",
//"actionBar.toggledBackground": "#00000000",
//"activityBarTop.activeBorder": "#cc28f1",
//"activityBarTop.dropBorder": "#cc28f1",
//"activityErrorBadge.background": "#f14c4c",
//"activityErrorBadge.foreground": "#000000",
//"activityWarningBadge.background": "#cca700",
//"activityWarningBadge.foreground": "#000000",
//"banner.background": "#01589b99",
//"banner.foreground": "#ffffff",
//"banner.iconForeground": "#00ff0088",
//"bookmarks.lineBackground": "#00000000",
//"bookmarks.lineBorder": "#00000000",
//"bookmarks.overviewRuler": "#157efb88",
//"breadcrumb.activeSelectionForeground": "#e0e0e0",
//"breadcrumb.background": "#00000000",
//"breadcrumb.focusForeground": "#e0e0e0",
//"breadcrumbPicker.background": "#0c1125",
//"button.foreground": "#ffffff",
//"button.hoverBackground": "#016aba99",
//"button.secondaryBackground": "#3a3d41",
//"button.secondaryForeground": "#ffffff",
//"button.secondaryHoverBackground": "#45494e",
//"button.separator": "#ffffff66",
//"charts.blue": "#00ff0088",
//"charts.foreground": "#cccccc",
//"charts.green": "#89d185",
//"charts.lines": "#cccccc80",
//"charts.orange": "#d18616",
//"charts.purple": "#b180d7",
//"charts.red": "#ff000088",
//"charts.yellow": "#ffe60033",
//"chat.avatarBackground": "#1f1f1f",
//"chat.avatarForeground": "#cccccc",
//"chat.editedFileForeground": "#e2c08d",
//"chat.requestBackground": "#00000000",
//"chat.requestBorder": "#ffffff1a",
//"chat.slashCommandBackground": "#34414b8f",
//"chat.slashCommandForeground": "#40a6ff",
//"checkbox.background": "#3c3c3c",
//"checkbox.border": "#3c3c3c",
//"checkbox.foreground": "#f0f0f0",
//"checkbox.selectBackground": "#0c1125",
//"checkbox.selectBorder": "#29b6f6",
//"commandCenter.activeBackground": "#ffffff14",
//"commandCenter.activeBorder": "#29b6f64d",
//"commandCenter.activeForeground": "#df00fe",
//"commandCenter.background": "#ffffff0d",
//"commandCenter.border": "#29b6f633",
//"commandCenter.debuggingBackground": "#00000000",
//"commandCenter.foreground": "#29b6f6",
//"commandCenter.inactiveBorder": "#29b6f626",
//"commandCenter.inactiveForeground": "#29b6f699",
//"commentsView.resolvedIcon": "#cccccc80",
//"commentsView.unresolvedIcon": "#29b6f6",
//"debugConsole.errorForeground": "#f48771",
//"debugConsole.infoForeground": "#00ff0088",
//"debugConsole.sourceForeground": "#cccccc",
//"debugConsole.warningForeground": "#ffe60033",
//"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",
//"debugToolBar.background": "#333333",
//"debugView.exceptionLabelBackground": "#6c2022",
//"debugView.exceptionLabelForeground": "#cccccc",
//"debugView.stateLabelBackground": "#88888844",
//"debugView.stateLabelForeground": "#cccccc",
//"debugView.valueChangedHighlight": "#569cd6",
//"descriptionForeground": "#ccccccb3",
//"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": "#00000000",
//"diffEditor.unchangedRegionForeground": "#cccccc",
//"diffEditor.unchangedRegionShadow": "#000000",
//"disabledForeground": "#cccccc80",
//"dropdown.background": "#3c3c3c",
//"dropdown.border": "#3c3c3c",
//"dropdown.foreground": "#f0f0f0",
//"editor.compositionBorder": "#ffffff",
//"editor.findRangeHighlightBackground": "#3a3d4166",
//"editor.focusedStackFrameHighlightBackground": "#7abd7a4d",
//"editor.foldBackground": "#264f784d",
//"editor.foldPlaceholderForeground": "#808080",
//"editor.hoverHighlightBackground": "#264f7840",
//"editor.inactiveSelectionBackground": "#264f7880",
//"editor.inlineValuesBackground": "#ffc80033",
//"editor.inlineValuesForeground": "#ffffff80",
//"editor.linkedEditingBackground": "#ff00004d",
//"editor.placeholder.foreground": "#ffffff56",
//"editor.rangeHighlightBackground": "#ffffff0b",
//"editor.selectionBackground": "#264f78",
//"editor.snippetFinalTabstopHighlightBorder": "#525252",
//"editor.snippetTabstopHighlightBackground": "#7c7c7c4d",
//"editor.stackFrameHighlightBackground": "#ffff0033",
//"editor.symbolHighlightBackground": "#4d576b",
//"editor.wordHighlightStrongBackground": "#004972b8",
//"editor.wordHighlightTextBackground": "#00000000",
//"editorActionList.background": "#0c1125",
//"editorActionList.focusBackground": "#01589b99",
//"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": "#29b6f61a",
//"editorCommentsWidget.rangeBackground": "#29b6f61a",
//"editorCommentsWidget.replyInputBackground": "#00000000",
//"editorCommentsWidget.resolvedBorder": "#cccccc80",
//"editorCommentsWidget.unresolvedBorder": "#29b6f6",
//"editorGhostText.foreground": "#ffffff56",
//"editorGroup.dropIntoPromptBackground": "#0c1125",
//"editorGroup.dropIntoPromptForeground": "#cccccc",
//"editorGroupHeader.noTabsBackground": "#00000000",
//"editorGutter.addedBackground": "#487e02",
//"editorGutter.background": "#00000000",
//"editorGutter.commentGlyphForeground": "#a1b9b9",
//"editorGutter.commentRangeForeground": "#01589b99",
//"editorGutter.commentUnresolvedGlyphForeground": "#a1b9b9",
//"editorGutter.deletedBackground": "#ff000088",
//"editorGutter.foldingControlForeground": "#29b6f6",
//"editorGutter.modifiedBackground": "#1b81a8",
//"editorHint.foreground": "#eeeeeeb3",
//"editorHoverWidget.background": "#0c1125",
//"editorHoverWidget.border": "#1979c2",
//"editorHoverWidget.foreground": "#cccccc",
//"editorHoverWidget.highlightForeground": "#2aaaff",
//"editorHoverWidget.statusBarBackground": "#0e142c",
//"editorIndentGuide.activeBackground": "#e3e4e229",
//"editorIndentGuide.activeBackground1": "#e3e4e229",
//"editorIndentGuide.activeBackground2": "#00000000",
//"editorIndentGuide.activeBackground3": "#00000000",
//"editorIndentGuide.activeBackground4": "#00000000",
//"editorIndentGuide.activeBackground5": "#00000000",
//"editorIndentGuide.activeBackground6": "#00000000",
//"editorIndentGuide.background": "#e3e4e229",
//"editorIndentGuide.background1": "#e3e4e229",
//"editorIndentGuide.background2": "#00000000",
//"editorIndentGuide.background3": "#00000000",
//"editorIndentGuide.background4": "#00000000",
//"editorIndentGuide.background5": "#00000000",
//"editorIndentGuide.background6": "#00000000",
//"editorInlayHint.background": "#0c11251a",
//"editorInlayHint.foreground": "#969696",
//"editorInlayHint.parameterBackground": "#0c11251a",
//"editorInlayHint.parameterForeground": "#969696",
//"editorInlayHint.typeBackground": "#0c11251a",
//"editorInlayHint.typeForeground": "#969696",
//"editorLightBulb.foreground": "#ffcc00",
//"editorLightBulbAi.foreground": "#ffcc00",
//"editorLightBulbAutoFix.foreground": "#75beff",
//"editorLink.activeForeground": "#4e94ce",
//"editorMarkerNavigation.background": "#00000000",
//"editorMarkerNavigationError.background": "#ff000088",
//"editorMarkerNavigationError.headerBackground": "#ff00000e",
//"editorMarkerNavigationInfo.background": "#00ff0088",
//"editorMarkerNavigationInfo.headerBackground": "#00ff000e",
//"editorMarkerNavigationWarning.background": "#ffe60033",
//"editorMarkerNavigationWarning.headerBackground": "#ffe60005",
//"editorMultiCursor.primary.foreground": "#cc28f1",
//"editorMultiCursor.secondary.foreground": "#cc28f1",
//"editorOverviewRuler.addedForeground": "#487e0299",
//"editorOverviewRuler.bracketMatchForeground": "#a0a0a0",
//"editorOverviewRuler.commentForeground": "#01589b99",
//"editorOverviewRuler.commentUnresolvedForeground": "#01589b99",
//"editorOverviewRuler.commonContentForeground": "#60606066",
//"editorOverviewRuler.currentContentForeground": "#40c8ae80",
//"editorOverviewRuler.deletedForeground": "#ff000052",
//"editorOverviewRuler.errorForeground": "#ff1212b3",
//"editorOverviewRuler.findMatchForeground": "#d186167e",
//"editorOverviewRuler.incomingContentForeground": "#40a6ff80",
//"editorOverviewRuler.infoForeground": "#00ff0088",
//"editorOverviewRuler.inlineChatInserted": "#9ccc2c1f",
//"editorOverviewRuler.inlineChatRemoved": "#ff00001f",
//"editorOverviewRuler.modifiedForeground": "#1b81a899",
//"editorOverviewRuler.rangeHighlightForeground": "#007acc99",
//"editorOverviewRuler.selectionHighlightForeground": "#a0a0a0cc",
//"editorOverviewRuler.warningForeground": "#ffe60033",
//"editorOverviewRuler.wordHighlightForeground": "#a0a0a0cc",
//"editorOverviewRuler.wordHighlightStrongForeground": "#c0a0c0cc",
//"editorOverviewRuler.wordHighlightTextForeground": "#a0a0a0cc",
//"editorPane.background": "#00000000",
//"editorRuler.foreground": "#5a5a5a",
//"editorStickyScroll.shadow": "#000000",
//"editorStickyScrollHover.background": "#2a2d2e",
//"editorSuggestWidget.background": "#0c1125",
//"editorSuggestWidget.focusHighlightForeground": "#2aaaff",
//"editorSuggestWidget.foreground": "#a1b9b9",
//"editorSuggestWidget.highlightForeground": "#2aaaff",
//"editorSuggestWidget.selectedBackground": "#01589b99",
//"editorSuggestWidget.selectedForeground": "#ffffff",
//"editorSuggestWidgetStatus.foreground": "#a1b9b980",
//"editorUnicodeHighlight.border": "#ffe60033",
//"editorUnnecessaryCode.opacity": "#000000aa",
//"editorWatermark.foreground": "#a1b9b999",
//"editorWhitespace.foreground": "#e3e4e229",
//"editorWidget.foreground": "#cccccc",
//"errorForeground": "#f48771",
//"extensionBadge.remoteBackground": "#df00fe",
//"extensionBadge.remoteForeground": "#29b6f6",
//"extensionButton.background": "#01589b99",
//"extensionButton.foreground": "#ffffff",
//"extensionButton.hoverBackground": "#016aba99",
//"extensionButton.prominentBackground": "#01589b99",
//"extensionButton.prominentForeground": "#ffffff",
//"extensionButton.prominentHoverBackground": "#016aba99",
//"extensionButton.separator": "#ffffff66",
//"extensionIcon.preReleaseForeground": "#1d9271",
//"extensionIcon.sponsorForeground": "#d758b3",
//"extensionIcon.starForeground": "#ff8e00",
//"extensionIcon.verifiedForeground": "#df00fe",
//"foreground": "#cccccc",
//"gitDecoration.conflictingResourceForeground": "#e4676b",
//"gitDecoration.deletedResourceForeground": "#c74e39",
//"gitDecoration.stageDeletedResourceForeground": "#c74e39",
//"gitDecoration.stageModifiedResourceForeground": "#e2c08d",
//"gitDecoration.submoduleResourceForeground": "#8db9e2",
//"inlineChat.background": "#0c1125",
//"inlineChat.border": "#1979c2",
//"inlineChat.foreground": "#cccccc",
//"inlineChat.shadow": "#00000000",
//"inlineChatDiff.inserted": "#9ccc2c1a",
//"inlineChatDiff.removed": "#ff00001a",
//"inlineChatInput.background": "#0c1125",
//"inlineChatInput.border": "#1979c2",
//"inlineChatInput.focusBorder": "#00000000",
//"inlineChatInput.placeholderForeground": "#cccccc80",
//"inlineEdit.border": "#ffffff00",
//"inlineEdit.indicator.background": "#01589b99",
//"inlineEdit.indicator.border": "#ffffff66",
//"inlineEdit.indicator.foreground": "#ffffff",
//"inlineEdit.modifiedBackground": "#9ccc2c14",
//"inlineEdit.originalBackground": "#ff000014",
//"input.foreground": "#cccccc",
//"input.placeholderForeground": "#cccccc80",
//"inputOption.activeBackground": "#00000000",
//"inputOption.activeBorder": "#007acc",
//"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": "#1979c2",
//"interactive.inactiveCodeBorder": "#01589b99",
//"issues.closed": "#cb2431",
//"issues.newIssueDecoration": "#ffffff48",
//"issues.open": "#3fb950",
//"keybindingLabel.background": "#8080802b",
//"keybindingLabel.border": "#33333399",
//"keybindingLabel.bottomBorder": "#44444499",
//"keybindingLabel.foreground": "#cccccc",
//"keybindingTable.headerBackground": "#cccccc0a",
//"keybindingTable.rowsBackground": "#cccccc0a",
//"list.activeSelectionForeground": "#ffffff",
//"list.deemphasizedForeground": "#8c8c8c",
//"list.dropBackground": "#062f4a",
//"list.dropBetweenBackground": "#29b6f6",
//"list.errorForeground": "#f88070",
//"list.filterMatchBackground": "#4d576b",
//"list.focusHighlightForeground": "#2aaaff",
//"list.highlightForeground": "#2aaaff",
//"list.invalidItemForeground": "#b89500",
//"list.warningForeground": "#cca700",
//"listFilterWidget.background": "#0c1125",
//"listFilterWidget.noMatchesOutline": "#be1100",
//"listFilterWidget.outline": "#00000000",
//"listFilterWidget.shadow": "#00000000",
//"menu.background": "#3c3c3c",
//"menu.foreground": "#f0f0f0",
//"menu.selectionBackground": "#01589b99",
//"menu.selectionForeground": "#ffffff",
//"menu.separatorBackground": "#606060",
//"menubar.selectionBackground": "#5a5d5e50",
//"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": "#00ff0088",
//"minimap.selectionHighlight": "#264f78",
//"minimap.selectionOccurrenceHighlight": "#676767",
//"minimap.warningHighlight": "#ffe60033",
//"minimapGutter.addedBackground": "#487e02",
//"minimapGutter.deletedBackground": "#ff000088",
//"minimapGutter.modifiedBackground": "#1b81a8",
//"minimapSlider.activeBackground": "#bfbfbf33",
//"minimapSlider.background": "#79797933",
//"minimapSlider.hoverBackground": "#64646459",
//"multiDiffEditor.background": "#00000000",
//"multiDiffEditor.border": "#00000000",
//"multiDiffEditor.headerBackground": "#262626",
//"notebook.cellBorderColor": "#01589b99",
//"notebook.cellEditorBackground": "#00000000",
//"notebook.cellInsertionIndicator": "#00000000",
//"notebook.cellStatusBarItemHoverBackground": "#ffffff26",
//"notebook.cellToolbarSeparator": "#80808059",
//"notebook.editorBackground": "#00000000",
//"notebook.focusedCellBorder": "#00000000",
//"notebook.focusedEditorBorder": "#00000000",
//"notebook.inactiveFocusedCellBorder": "#01589b99",
//"notebook.selectedCellBackground": "#01589b99",
//"notebook.selectedCellBorder": "#01589b99",
//"notebook.symbolHighlightBackground": "#ffffff0b",
//"notebookEditorOverviewRuler.runningCellForeground": "#89d185",
//"notebookScrollbarSlider.activeBackground": "#bfbfbf66",
//"notebookScrollbarSlider.background": "#79797966",
//"notebookScrollbarSlider.hoverBackground": "#646464b3",
//"notebookStatusErrorIcon.foreground": "#f48771",
//"notebookStatusRunningIcon.foreground": "#cccccc",
//"notebookStatusSuccessIcon.foreground": "#89d185",
//"notificationCenterHeader.background": "#101630",
//"notificationLink.foreground": "#df00fe",
//"notifications.background": "#0c1125",
//"notifications.border": "#101630",
//"notifications.foreground": "#cccccc",
//"notificationsErrorIcon.foreground": "#ff000088",
//"notificationsInfoIcon.foreground": "#00ff0088",
//"notificationsWarningIcon.foreground": "#ffe60033",
//"panel.dropBorder": "#29b6f6",
//"panelInput.border": "#01589b99",
//"panelSection.border": "#00000000",
//"panelSection.dropBackground": "#7a15d86d",
//"panelSectionHeader.background": "#80808033",
//"panelStickyScroll.background": "#00000000",
//"panelStickyScroll.shadow": "#000000",
//"peekViewEditorStickyScroll.background": "#00000000",
//"peekViewResult.fileForeground": "#ffffff",
//"peekViewResult.lineForeground": "#bbbbbb",
//"peekViewResult.matchHighlightBackground": "#ea5c004d",
//"peekViewResult.selectionBackground": "#3399ff33",
//"peekViewResult.selectionForeground": "#ffffff",
//"peekViewTitleDescription.foreground": "#ccccccb3",
//"peekViewTitleLabel.foreground": "#ffffff",
//"pickerGroup.border": "#3f3f46",
//"pickerGroup.foreground": "#3794ff",
//"ports.iconRunningProcessForeground": "#a608eb",
//"problemsErrorIcon.foreground": "#ff000088",
//"problemsInfoIcon.foreground": "#00ff0088",
//"problemsWarningIcon.foreground": "#ffe60033",
//"profileBadge.background": "#4d4d4d",
//"profileBadge.foreground": "#ffffff",
//"profiles.sashBorder": "#00000000",
//"progressBar.background": "#0e70c0",
//"pullRequests.closed": "#cb2431",
//"pullRequests.draft": "#6e7681",
//"pullRequests.merged": "#8957e5",
//"pullRequests.notification": "#00ff0088",
//"pullRequests.open": "#3fb950",
//"quickInput.background": "#0c1125",
//"quickInput.foreground": "#cccccc",
//"quickInputList.focusBackground": "#01589b99",
//"quickInputList.focusForeground": "#ffffff",
//"quickInputTitle.background": "#ffffff1b",
//"radio.activeBackground": "#00000000",
//"radio.activeBorder": "#007acc",
//"radio.activeForeground": "#ffffff",
//"radio.inactiveBorder": "#ffffff33",
//"radio.inactiveHoverBackground": "#5a5d5e80",
//"remoteHub.decorations.addedForegroundColor": "#81b88b",
//"remoteHub.decorations.conflictForegroundColor": "#e4676b",
//"remoteHub.decorations.deletedForegroundColor": "#c74e39",
//"remoteHub.decorations.ignoredResourceForeground": "#8c8c8c",
//"remoteHub.decorations.incomingAddedForegroundColor": "#81b88b",
//"remoteHub.decorations.incomingDeletedForegroundColor": "#c74e39",
//"remoteHub.decorations.incomingModifiedForegroundColor": "#e2c08d",
//"remoteHub.decorations.incomingRenamedForegroundColor": "#73c991",
//"remoteHub.decorations.modifiedForegroundColor": "#e2c08d",
//"remoteHub.decorations.possibleConflictForegroundColor": "#cca700",
//"remoteHub.decorations.submoduleForegroundColor": "#8db9e2",
//"remoteHub.decorations.workspaceRepositoriesView.hasUncommittedChangesForegroundColor": "#e2c08d",
//"sash.hoverBorder": "#00000000",
//"scmGraph.foreground1": "#ffb000",
//"scmGraph.foreground2": "#dc267f",
//"scmGraph.foreground3": "#994f00",
//"scmGraph.foreground4": "#40b0a6",
//"scmGraph.foreground5": "#b66dff",
//"scmGraph.historyItemBaseRefColor": "#ea5c00",
//"scmGraph.historyItemHoverAdditionsForeground": "#81b88b",
//"scmGraph.historyItemHoverDefaultLabelBackground": "#0c1125",
//"scmGraph.historyItemHoverDefaultLabelForeground": "#cccccc",
//"scmGraph.historyItemHoverDeletionsForeground": "#c74e39",
//"scmGraph.historyItemHoverLabelForeground": "#ffffff",
//"scmGraph.historyItemRefColor": "#00ff0088",
//"scmGraph.historyItemRemoteRefColor": "#b180d7",
//"scrollbar.shadow": "#000000",
//"scrollbarSlider.activeBackground": "#bfbfbf66",
//"scrollbarSlider.background": "#79797966",
//"scrollbarSlider.hoverBackground": "#646464b3",
//"search.resultsInfoForeground": "#cccccca6",
//"searchEditor.findMatchBackground": "#4d576ba8",
//"searchEditor.textInputBorder": "#01589b99",
//"settings.checkboxBackground": "#3c3c3c",
//"settings.checkboxBorder": "#3c3c3c",
//"settings.checkboxForeground": "#f0f0f0",
//"settings.dropdownBorder": "#3c3c3c",
//"settings.dropdownForeground": "#f0f0f0",
//"settings.dropdownListBorder": "#1979c2",
//"settings.focusedRowBackground": "#01589b5c",
//"settings.focusedRowBorder": "#00000000",
//"settings.headerBorder": "#00000000",
//"settings.headerForeground": "#e7e7e7",
//"settings.modifiedItemIndicator": "#0c7d9d",
//"settings.numberInputBackground": "#0c1125",
//"settings.numberInputBorder": "#01589b99",
//"settings.numberInputForeground": "#cccccc",
//"settings.rowHoverBackground": "#01589b2e",
//"settings.sashBorder": "#00000000",
//"settings.settingsHeaderHoverForeground": "#e7e7e7b3",
//"settings.textInputBackground": "#0c1125",
//"settings.textInputBorder": "#01589b99",
//"settings.textInputForeground": "#cccccc",
//"sideBar.dropBackground": "#7a15d86d",
//"sideBarActivityBarTop.border": "#00000000",
//"sideBarStickyScroll.background": "#00000000",
//"sideBarStickyScroll.shadow": "#000000",
//"sideBarTitle.background": "#00000000",
//"sideBySideEditor.horizontalBorder": "#8715d8",
//"sideBySideEditor.verticalBorder": "#8715d8",
//"simpleFindWidget.sashBorder": "#454545",
//"statusBar.debuggingBorder": "#00000000",
//"statusBar.debuggingForeground": "#1979c2",
//"statusBar.noFolderBorder": "#00000000",
//"statusBar.noFolderForeground": "#1979c2",
//"statusBarItem.compactHoverBackground": "#ffffff33",
//"statusBarItem.errorBackground": "#c72e0f",
//"statusBarItem.errorForeground": "#ffffff",
//"statusBarItem.errorHoverBackground": "#ffffff1f",
//"statusBarItem.errorHoverForeground": "#1979c2",
//"statusBarItem.focusBorder": "#1979c2",
//"statusBarItem.hoverBackground": "#ffffff1f",
//"statusBarItem.hoverForeground": "#1979c2",
//"statusBarItem.offlineBackground": "#6c1717",
//"statusBarItem.offlineForeground": "#29b6f6",
//"statusBarItem.offlineHoverBackground": "#ffffff1f",
//"statusBarItem.offlineHoverForeground": "#1979c2",
//"statusBarItem.prominentBackground": "#00000080",
//"statusBarItem.prominentForeground": "#1979c2",
//"statusBarItem.prominentHoverBackground": "#0000004d",
//"statusBarItem.prominentHoverForeground": "#1979c2",
//"statusBarItem.remoteForeground": "#29b6f6",
//"statusBarItem.remoteHoverBackground": "#ffffff1f",
//"statusBarItem.remoteHoverForeground": "#1979c2",
//"statusBarItem.warningBackground": "#998a0033",
//"statusBarItem.warningForeground": "#ffffff",
//"statusBarItem.warningHoverBackground": "#ffffff1f",
//"statusBarItem.warningHoverForeground": "#1979c2",
//"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.activeForeground": "#ffffff",
//"tab.dragAndDropBorder": "#ffffff",
//"tab.inactiveForeground": "#ffffff80",
//"tab.selectedBackground": "#00000000",
//"tab.selectedBorderTop": "#00000000",
//"tab.selectedForeground": "#ffffff",
//"tab.unfocusedActiveBackground": "#00000000",
//"tab.unfocusedActiveBorder": "#29b6f680",
//"tab.unfocusedActiveBorderTop": "#00000000",
//"tab.unfocusedActiveForeground": "#ffffff80",
//"tab.unfocusedActiveModifiedBorder": "#00000000",
//"tab.unfocusedInactiveBackground": "#00000000",
//"tab.unfocusedInactiveForeground": "#ffffff40",
//"tab.unfocusedInactiveModifiedBorder": "#00000000",
//"terminal.ansiBlack": "#000000",
//"terminal.ansiBrightBlack": "#666666",
//"terminal.ansiBrightGreen": "#23d18b",
//"terminal.ansiBrightMagenta": "#d670d6",
//"terminal.ansiBrightWhite": "#e5e5e5",
//"terminal.ansiBrightYellow": "#f5f543",
//"terminal.ansiRed": "#cd3131",
//"terminal.ansiWhite": "#e5e5e5",
//"terminal.dropBackground": "#7a15d86d",
//"terminal.findMatchBackground": "#0a5860",
//"terminal.findMatchHighlightBackground": "#4d576b",
//"terminal.hoverHighlightBackground": "#264f7820",
//"terminal.inactiveSelectionBackground": "#264f7880",
//"terminal.initialHintForeground": "#ffffff56",
//"terminal.selectionBackground": "#264f78",
//"terminal.tab.activeBorder": "#29b6f6",
//"terminalCommandDecoration.defaultBackground": "#ffffff40",
//"terminalCommandDecoration.errorBackground": "#f14c4c",
//"terminalCommandDecoration.successBackground": "#1b81a8",
//"terminalCommandGuide.foreground": "#01589b99",
//"terminalOverviewRuler.border": "#00000000",
//"terminalOverviewRuler.cursorForeground": "#a0a0a0cc",
//"terminalOverviewRuler.findMatchForeground": "#d186167e",
//"terminalStickyScrollHover.background": "#2a2d2e",
//"testing.coverCountBadgeBackground": "#0c1125",
//"testing.coverCountBadgeForeground": "#29b6f6",
//"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": "#a1b9b980",
//"testing.messagePeekBorder": "#00ff0088",
//"testing.messagePeekHeaderBackground": "#00ff000e",
//"testing.peekBorder": "#ff000088",
//"testing.peekHeaderBackground": "#ff00000e",
//"testing.runAction": "#73c991",
//"testing.uncoveredBackground": "#ff000033",
//"testing.uncoveredBorder": "#ff000026",
//"testing.uncoveredBranchBackground": "#ff000066",
//"testing.uncoveredGutterBackground": "#ff00004d",
//"textBlockQuote.border": "#007acc80",
//"textCodeBlock.background": "#0a0a0a66",
//"textLink.activeForeground": "#3794ff",
//"textPreformat.background": "#ffffff1a",
//"textPreformat.foreground": "#d7ba7d",
//"textSeparator.foreground": "#ffffff2e",
//"titleBar.inactiveForeground": "#29b6f699",
//"toolbar.activeBackground": "#63666750",
//"toolbar.hoverBackground": "#5a5d5e50",
//"tree.inactiveIndentGuidesStroke": "#00000000",
//"tree.tableColumnsBorder": "#cccccc20",
//"tree.tableOddRowsBackground": "#cccccc0a",
//"walkThrough.embeddedEditorBackground": "#00000066",
//"walkthrough.stepTitle.foreground": "#ffffff",
//"welcomePage.tileBorder": "#ffffff1a",
//"welcomePage.tileHoverBackground": "#0e142c",
//"activityBar.activeBackground": null,
//"activityBar.activeFocusBorder": null,
//"activityBarTop.activeBackground": null,
//"activityBarTop.background": null,
//"button.border": 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,
//"dropdown.listBackground": null,
//"editor.findMatchBorder": null,
//"editor.findMatchForeground": null,
//"editor.findMatchHighlightBorder": null,
//"editor.findMatchHighlightForeground": null,
//"editor.findRangeHighlightBorder": 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,
//"editorSuggestWidget.selectedIconForeground": 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.activeSelectionIconForeground": null,
//"list.filterMatchBorder": null,
//"list.focusBackground": null,
//"list.focusForeground": null,
//"list.hoverForeground": null,
//"list.inactiveFocusBackground": null,
//"list.inactiveFocusOutline": null,
//"list.inactiveSelectionForeground": null,
//"list.inactiveSelectionIconForeground": null,
//"menu.border": 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,
//"notificationCenter.border": null,
//"notificationCenterHeader.foreground": null,
//"notificationToast.border": null,
//"outputView.background": null,
//"outputViewStickyScroll.background": null,
//"panelSectionHeader.border": null,
//"panelSectionHeader.foreground": null,
//"panelStickyScroll.border": null,
//"quickInput.list.focusBackground": null,
//"quickInputList.focusIconForeground": null,
//"radio.inactiveBackground": null,
//"radio.inactiveForeground": null,
//"searchEditor.findMatchBorder": null,
//"sideBarStickyScroll.border": null,
//"tab.hoverBackground": null,
//"tab.hoverBorder": null,
//"tab.hoverForeground": null,
//"tab.unfocusedHoverBackground": null,
//"tab.unfocusedHoverBorder": null,
//"tab.unfocusedHoverForeground": null,
//"terminal.findMatchBorder": null,
//"terminal.findMatchHighlightBorder": null,
//"terminal.selectionForeground": null,
//"terminalCursor.background": null,
//"terminalStickyScroll.background": null,
//"terminalStickyScroll.border": null,
//"testing.message.error.lineBackground": null,
//"testing.message.info.lineBackground": null,
//"titleBar.border": null,
//"toolbar.hoverOutline": null,
//"widget.border": null,
//"window.activeBorder": null,
//"window.inactiveBorder": null
},
"tokenColors": [
{
"scope": [
"comment",
"punctuation.definition.comment"
],
"settings": {
"foreground": "#546E7A",
"fontStyle": "italic"
}
},
{
"scope": [
"variable",
"string constant.other.placeholder"
],
"settings": {
"foreground": "#04D9FF"
}
},
{
"scope": [
"constant.other.color"
],
"settings": {
"foreground": "#FFE600"
}
},
{
"scope": [
"invalid",
"invalid.illegal"
],
"settings": {
"foreground": "#FA6A82"
}
},
{
"scope": [
"keyword",
"storage.type",
"storage.modifier"
],
"settings": {
"foreground": "#DF00FE"
}
},
{
"scope": [
"keyword.control",
"constant.other.color",
"punctuation",
"meta.tag",
"punctuation.definition.tag",
"punctuation.separator.inheritance.php",
"punctuation.definition.tag.html",
"punctuation.definition.tag.begin.html",
"punctuation.definition.tag.end.html",
"punctuation.section.embedded",
"keyword.other.template",
"keyword.other.substitution"
],
"settings": {
"foreground": "#546E7A"
}
},
{
"scope": [
"entity.name.tag",
"meta.tag.sgml",
"markup.deleted.git_gutter"
],
"settings": {}
},
{
"scope": [
"entity.name.function",
"meta.function-call",
"variable.function",
"support.function",
"keyword.other.special-method"
],
"settings": {
"foreground": "#DF00FE"
}
},
{
"scope": [
"meta.block variable.other"
],
"settings": {
"foreground": "#4FE4FF"
}
},
{
"scope": [
"support.other.variable",
"string.other.link"
],
"settings": {
"foreground": "#90107F"
}
},
{
"scope": [
"constant.numeric",
"constant.language",
"support.constant",
"constant.character",
"constant.escape",
"variable.parameter",
"keyword.other.unit",
"keyword.other"
],
"settings": {
"foreground": "#00FF37"
}
},
{
"scope": [
"string",
"constant.other.symbol",
"constant.other.key",
"entity.other.inherited-class",
"markup.heading",
"markup.inserted.git_gutter",
"meta.group.braces.curly constant.other.object.key.js string.unquoted.label.js"
],
"settings": {
"foreground": "#04D9FF"
}
},
{
"scope": [
"entity.name",
"support.type",
"support.class",
"support.other.namespace.use.php",
"meta.use.php",
"support.other.namespace.php",
"markup.changed.git_gutter",
"support.type.sys-types"
],
"settings": {
"foreground": "#FFF857"
}