-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.json
2383 lines (2383 loc) · 61.4 KB
/
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": "light",
"colors": {
"activityBar.background": "#7fffff",
"activityBar.border": "#00ffff",
"activityBar.foreground": "#8255ff",
"activityBarBadge.background": "#8225ff",
"activityBarBadge.foreground": "#00ffff",
"badge.background": "#8225ff",
"badge.foreground": "#00ffff",
"button.background": "#8255ff",
"button.foreground": "#00ffff",
"debugExceptionWidget.background": "#00ffff",
"debugExceptionWidget.border": "#666aaa",
"debugToolBar.background": "#00ffff",
"descriptionForeground": "#8225ff",
"dropdown.background": "#00ffff",
"dropdown.border": "#666aaa",
"dropdown.foreground": "#8225ff",
"editor.background": "#00ffff",
"editor.findMatchBackground": "#666aaa",
"editor.findMatchHighlightBackground": "#666aaa",
"editor.findRangeHighlightBackground": "#7497a633",
"editor.foreground": "#8521ff",
"editor.hoverHighlightBackground": "#9999ff",
"editor.lineHighlightBackground": "#e4e4e4",
"editor.rangeHighlightBackground": "#0ff",
"editor.selectionBackground": "#e0e0e0",
"editor.selectionHighlightBackground": "#9999ff",
"editor.wordHighlightBackground": "#9999ff",
"editor.wordHighlightStrongBackground": "#007dd659",
"editorBracketMatch.background": "#d3d3e7",
"editorBracketMatch.border": "#715ab1",
"editorCodeLens.foreground": "#8225ff",
"editorCursor.foreground": "#99ff99",
"editorError.border": "#00ffff",
"editorError.foreground": "#666aaa",
"editorGroup.border": "#00ffff",
"editorGroup.emptyBackground": "#00ffff",
"editorGroupHeader.noTabsBackground": "#00ffff",
"editorGroupHeader.tabsBackground": "#00ffff",
"editorGroupHeader.tabsBorder": "#00ffff",
"editorGutter.addedBackground": "#49d0c5",
"editorGutter.deletedBackground": "#f76e6e",
"editorGutter.modifiedBackground": "#6fbef6",
"editorHoverWidget.background": "#00ffff",
"editorHoverWidget.border": "#666aaa",
"editorIndentGuide.background": "#666aaa",
"editorLineNumber.activeForeground": "#8225ff",
"editorLineNumber.foreground": "#90a7b2",
"editorMarkerNavigation.background": "#d0d0d0",
"editorMarkerNavigationError.background": "#f76e6e",
"editorMarkerNavigationWarning.background": "#8800ff",
"editorOverviewRuler.errorForeground": "#666aaa",
"editorOverviewRuler.warningForeground": "#8800ff",
"editorRuler.foreground": "#666aaa",
"editorSuggestWidget.background": "#00ffff",
"editorSuggestWidget.border": "#666aaa",
"editorSuggestWidget.foreground": "#8225ff",
"editorSuggestWidget.highlightForeground": "#8225ff",
"editorSuggestWidget.selectedBackground": "#d3d3e7",
"editorWarning.border": "#8800ff",
"editorWarning.foreground": "#8800ff",
"editorWhitespace.foreground": "#666aaa",
"editorWidget.background": "#00ffff",
"editorWidget.border": "#666ddd",
"errorForeground": "#8225ff",
"extensionButton.prominentBackground": "#715ab1",
"extensionButton.prominentForeground": "#00ffff",
"focusBorder": "#99ff99",
"foreground": "#8225ff",
"input.background": "#00ffff",
"input.border": "#666aaa",
"input.foreground": "#8225ff",
"input.placeholderForeground": "#93a1a1",
"inputOption.activeBorder": "#715ab1",
"inputValidation.errorBackground": "#f76e6e",
"inputValidation.errorBorder": "#de3d3b",
"inputValidation.infoBackground": "#00ffff",
"inputValidation.infoBorder": "#d0d0d0",
"inputValidation.warningBackground": "#8800ff",
"inputValidation.warningBorder": "#4225ff",
"list.activeSelectionBackground": "#d3d3e7",
"list.activeSelectionForeground": "#8225ff",
"list.errorForeground": "#666aaa",
"list.focusBackground": "#d3d3e7",
"list.focusForeground": "#8225ff",
"list.highlightForeground": "#8225ff",
"list.hoverBackground": "#d3d3e7",
"list.hoverForeground": "#8225ff",
"list.inactiveSelectionBackground": "#e0e7ea",
"list.inactiveSelectionForeground": "#8225ff",
"list.warningForeground": "#8800ff",
"notificationCenter.border": "#aaaaff",
"notificationCenterHeader.background": "#00ffff",
"notificationCenterHeader.foreground": "#8225ff",
"notificationLink.foreground": "#994cc3",
"notificationToast.border": "#aaaaff",
"notifications.background": "#00ffff",
"notifications.border": "#aaaaff",
"notifications.foreground": "#8225ff",
"panel.background": "#00ffff",
"panel.border": "#666aaa",
"peekView.border": "#666aaa",
"peekViewEditor.background": "#fbf8ef",
"peekViewEditor.matchHighlightBackground": "#49d0c5",
"peekViewEditorGutter.background": "#fbf8ef",
"peekViewResult.background": "#ecd8d8",
"peekViewResult.fileForeground": "#8225ff",
"peekViewResult.lineForeground": "#8225ff",
"peekViewResult.matchHighlightBackground": "#49d0c5",
"peekViewResult.selectionBackground": "#e0e7ea",
"peekViewResult.selectionForeground": "#8225ff",
"peekViewTitle.background": "#00ffff",
"peekViewTitleDescription.foreground": "#8225ff",
"peekViewTitleLabel.foreground": "#8225ff",
"pickerGroup.border": "#666aaa",
"pickerGroup.foreground": "#8225ff",
"progressBar.background": "#715ab1",
"scrollbar.shadow": "#aaaaff",
"selection.background": "#7a8ffa",
"sideBar.background": "#00ffff",
"sideBar.border": "#00ffff",
"sideBar.foreground": "#8225ff",
"sideBarTitle.foreground": "#8225ff",
"statusBar.background": "#00ffff",
"statusBar.border": "#00ffff",
"statusBar.debuggingBackground": "#00ffff",
"statusBar.debuggingForeground": "#8225ff",
"statusBar.foreground": "#8225ff",
"statusBar.noFolderBackground": "#00ffff",
"statusBar.noFolderForeground": "#8225ff",
"tab.activeBackground": "#00ffff",
"tab.activeForeground": "#8225ff",
"tab.activeModifiedBorder": "#715ab1",
"tab.border": "#00ffff",
"tab.inactiveBackground": "#e4e4e4",
"tab.inactiveForeground": "#8225ff",
"tab.inactiveModifiedBorder": "#93a1a1",
"tab.unfocusedActiveModifiedBorder": "#93a1a1",
"tab.unfocusedInactiveModifiedBorder": "#93a1a1",
"terminal.ansiBlack": "#8225ff",
"terminal.ansiBlue": "#6666ff",
"terminal.ansiBrightBlack": "#8225ff",
"terminal.ansiBrightBlue": "#6666ff",
"terminal.ansiBrightCyan": "#00ffff",
"terminal.ansiBrightGreen": "#9f9",
"terminal.ansiBrightMagenta": "#d6438a",
"terminal.ansiBrightRed": "#de3d3b",
"terminal.ansiBrightWhite": "#ffffff",
"terminal.ansiBrightYellow": "#ff9",
"terminal.ansiCyan": "#00dddd",
"terminal.ansiGreen": "#99dd99",
"terminal.ansiMagenta": "#d6438a",
"terminal.ansiRed": "#de3d3b",
"terminal.ansiWhite": "#fff",
"terminal.ansiYellow": "#ff9",
"terminal.background": "#9999ff",
"terminal.foreground": "#00ffff",
"titleBar.activeBackground": "#00ffff",
"widget.shadow": "#696969",
//"activityBar.activeBorder": "#8225ff",
//"activityBar.dropBorder": "#8225ff",
//"activityBar.inactiveForeground": "#4e316366",
//"banner.background": "#7d7db8",
//"banner.foreground": "#8225ff",
//"banner.iconForeground": "#1a85ff",
//"breadcrumb.activeSelectionForeground": "#3e274f",
//"breadcrumb.background": "#00ffff",
//"breadcrumb.focusForeground": "#3e274f",
//"breadcrumb.foreground": "#4e3163cc",
//"breadcrumbPicker.background": "#00ffff",
//"button.hoverBackground": "#594591",
//"button.secondaryBackground": "#5f6a79",
//"button.secondaryForeground": "#ffffff",
//"button.secondaryHoverBackground": "#4c5561",
//"button.separator": "#efeae966",
//"charts.blue": "#1a85ff",
//"charts.foreground": "#8225ff",
//"charts.green": "#388a34",
//"charts.lines": "#4e316380",
//"charts.orange": "#d18616",
//"charts.purple": "#652d90",
//"charts.red": "#666aaa",
//"charts.yellow": "#8800ff",
//"checkbox.background": "#00ffff",
//"checkbox.border": "#666aaa",
//"checkbox.foreground": "#8225ff",
//"checkbox.selectBackground": "#00ffff",
//"checkbox.selectBorder": "#424242",
//"commandCenter.activeBackground": "#00000014",
//"commandCenter.activeBorder": "#3333334d",
//"commandCenter.activeForeground": "#333333",
//"commandCenter.background": "#0000000d",
//"commandCenter.border": "#33333333",
//"commandCenter.foreground": "#333333",
//"commandCenter.inactiveBorder": "#33333326",
//"commandCenter.inactiveForeground": "#33333399",
//"commentsView.resolvedIcon": "#61616180",
//"commentsView.unresolvedIcon": "#93a1a1",
//"debugConsole.errorForeground": "#8225ff",
//"debugConsole.infoForeground": "#1a85ff",
//"debugConsole.sourceForeground": "#8225ff",
//"debugConsole.warningForeground": "#8800ff",
//"debugConsoleInputIcon.foreground": "#8225ff",
//"debugIcon.breakpointCurrentStackframeForeground": "#be8700",
//"debugIcon.breakpointDisabledForeground": "#848484",
//"debugIcon.breakpointForeground": "#e51400",
//"debugIcon.breakpointStackframeForeground": "#89d185",
//"debugIcon.breakpointUnverifiedForeground": "#848484",
//"debugIcon.continueForeground": "#007acc",
//"debugIcon.disconnectForeground": "#a1260d",
//"debugIcon.pauseForeground": "#007acc",
//"debugIcon.restartForeground": "#388a34",
//"debugIcon.startForeground": "#388a34",
//"debugIcon.stepBackForeground": "#007acc",
//"debugIcon.stepIntoForeground": "#007acc",
//"debugIcon.stepOutForeground": "#007acc",
//"debugIcon.stepOverForeground": "#007acc",
//"debugIcon.stopForeground": "#a1260d",
//"debugTokenExpression.boolean": "#0000ff",
//"debugTokenExpression.error": "#e51400",
//"debugTokenExpression.name": "#9b46b0",
//"debugTokenExpression.number": "#098658",
//"debugTokenExpression.string": "#a31515",
//"debugTokenExpression.value": "#6c6c6ccc",
//"debugView.exceptionLabelBackground": "#a31515",
//"debugView.exceptionLabelForeground": "#ffffff",
//"debugView.stateLabelBackground": "#88888844",
//"debugView.stateLabelForeground": "#8225ff",
//"debugView.valueChangedHighlight": "#569cd6",
//"diffEditor.diagonalFill": "#22222233",
//"diffEditor.insertedLineBackground": "#9bb95533",
//"diffEditor.insertedTextBackground": "#9ccc2c40",
//"diffEditor.removedLineBackground": "#ff000033",
//"diffEditor.removedTextBackground": "#ff000033",
//"disabledForeground": "#61616180",
//"editor.focusedStackFrameHighlightBackground": "#cee7ce73",
//"editor.foldBackground": "#e0e0e04d",
//"editor.inactiveSelectionBackground": "#e0e0e080",
//"editor.inlineValuesBackground": "#ffc80033",
//"editor.inlineValuesForeground": "#00000080",
//"editor.lineHighlightBorder": "#eeeeee",
//"editor.linkedEditingBackground": "#ff00004d",
//"editor.snippetFinalTabstopHighlightBorder": "#0a326480",
//"editor.snippetTabstopHighlightBackground": "#0a326433",
//"editor.stackFrameHighlightBackground": "#ffff6673",
//"editor.symbolHighlightBackground": "#666aaa",
//"editor.wordHighlightTextBackground": "#9999ff",
//"editorActiveLineNumber.foreground": "#0b216f",
//"editorBracketHighlight.foreground1": "#0431fa",
//"editorBracketHighlight.foreground2": "#319331",
//"editorBracketHighlight.foreground3": "#7b3814",
//"editorBracketHighlight.foreground4": "#00000000",
//"editorBracketHighlight.foreground5": "#00000000",
//"editorBracketHighlight.foreground6": "#00000000",
//"editorBracketHighlight.unexpectedBracket.foreground": "#ff1212cc",
//"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": "#93a1a11a",
//"editorCommentsWidget.rangeActiveBorder": "#93a1a166",
//"editorCommentsWidget.rangeBackground": "#93a1a11a",
//"editorCommentsWidget.rangeBorder": "#93a1a166",
//"editorCommentsWidget.resolvedBorder": "#61616180",
//"editorCommentsWidget.unresolvedBorder": "#93a1a1",
//"editorGhostText.foreground": "#00000077",
//"editorGroup.dropBackground": "#2677cb2e",
//"editorGroup.dropIntoPromptBackground": "#00ffff",
//"editorGroup.dropIntoPromptForeground": "#8225ff",
//"editorGutter.background": "#00ffff",
//"editorGutter.commentGlyphForeground": "#8225ff",
//"editorGutter.commentRangeForeground": "#d2dce1",
//"editorGutter.commentUnresolvedGlyphForeground": "#8225ff",
//"editorGutter.foldingControlForeground": "#424242",
//"editorHint.foreground": "#6c6c6c",
//"editorHoverWidget.foreground": "#8225ff",
//"editorHoverWidget.highlightForeground": "#8225ff",
//"editorHoverWidget.statusBarBackground": "#e5dddb",
//"editorIndentGuide.activeBackground": "#666aaa",
//"editorInfo.foreground": "#1a85ff",
//"editorInlayHint.background": "#715ab199",
//"editorInlayHint.foreground": "#00ffff",
//"editorInlayHint.parameterBackground": "#715ab199",
//"editorInlayHint.parameterForeground": "#00ffff",
//"editorInlayHint.typeBackground": "#715ab199",
//"editorInlayHint.typeForeground": "#00ffff",
//"editorLightBulb.foreground": "#ddb100",
//"editorLightBulbAutoFix.foreground": "#007acc",
//"editorLink.activeForeground": "#0000ff",
//"editorMarkerNavigationError.headerBackground": "#f76e6e1a",
//"editorMarkerNavigationInfo.background": "#1a85ff",
//"editorMarkerNavigationInfo.headerBackground": "#1a85ff1a",
//"editorMarkerNavigationWarning.headerBackground": "#b1951d1a",
//"editorOverviewRuler.addedForeground": "#49d0c599",
//"editorOverviewRuler.border": "#7f7f7f4d",
//"editorOverviewRuler.bracketMatchForeground": "#a0a0a0",
//"editorOverviewRuler.commentForeground": "#d2dce1",
//"editorOverviewRuler.commentUnresolvedForeground": "#d2dce1",
//"editorOverviewRuler.commonContentForeground": "#60606066",
//"editorOverviewRuler.currentContentForeground": "#40c8ae80",
//"editorOverviewRuler.deletedForeground": "#f76e6e99",
//"editorOverviewRuler.findMatchForeground": "#d186167e",
//"editorOverviewRuler.incomingContentForeground": "#40a6ff80",
//"editorOverviewRuler.infoForeground": "#1a85ff",
//"editorOverviewRuler.modifiedForeground": "#6fbef699",
//"editorOverviewRuler.rangeHighlightForeground": "#007acc99",
//"editorOverviewRuler.selectionHighlightForeground": "#a0a0a0cc",
//"editorOverviewRuler.wordHighlightForeground": "#a0a0a0cc",
//"editorOverviewRuler.wordHighlightStrongForeground": "#c0a0c0cc",
//"editorOverviewRuler.wordHighlightTextForeground": "#a0a0a0cc",
//"editorPane.background": "#00ffff",
//"editorStickyScroll.background": "#00ffff",
//"editorStickyScrollHover.background": "#f0f0f0",
//"editorSuggestWidget.focusHighlightForeground": "#8225ff",
//"editorSuggestWidget.selectedForeground": "#8225ff",
//"editorSuggestWidgetStatus.foreground": "#4e316380",
//"editorUnicodeHighlight.background": "#cea33d14",
//"editorUnicodeHighlight.border": "#cea33d",
//"editorUnnecessaryCode.opacity": "#00000077",
//"editorWidget.foreground": "#8225ff",
//"extensionBadge.remoteBackground": "#8225ff",
//"extensionBadge.remoteForeground": "#00ffff",
//"extensionButton.background": "#715ab1",
//"extensionButton.foreground": "#00ffff",
//"extensionButton.hoverBackground": "#594591",
//"extensionButton.prominentHoverBackground": "#594591",
//"extensionButton.separator": "#efeae966",
//"extensionIcon.preReleaseForeground": "#1d9271",
//"extensionIcon.sponsorForeground": "#b51e78",
//"extensionIcon.starForeground": "#df6100",
//"extensionIcon.verifiedForeground": "#006ab1",
//"icon.foreground": "#424242",
//"inputOption.activeBackground": "#93a1a133",
//"inputOption.activeForeground": "#000000",
//"inputOption.hoverBackground": "#b8b8b850",
//"interactive.activeCodeBorder": "#666aaa",
//"interactive.inactiveCodeBorder": "#e0e7ea",
//"interactive.requestBackground": "#00000008",
//"interactive.requestBorder": "#0000001a",
//"interactiveEditor.border": "#666aaa",
//"interactiveEditor.regionHighlight": "#9999ff",
//"interactiveEditor.shadow": "#666aaa",
//"interactiveEditorDiff.inserted": "#9ccc2c20",
//"interactiveEditorDiff.removed": "#ff00001a",
//"interactiveEditorInput.background": "#00ffff",
//"interactiveEditorInput.border": "#666aaa",
//"interactiveEditorInput.focusBorder": "#93a1a1",
//"interactiveEditorInput.placeholderForeground": "#93a1a1",
//"issues.closed": "#cb2431",
//"issues.newIssueDecoration": "#00000048",
//"issues.open": "#3fb950",
//"keybindingLabel.background": "#dddddd66",
//"keybindingLabel.border": "#cccccc66",
//"keybindingLabel.bottomBorder": "#bbbbbb66",
//"keybindingLabel.foreground": "#555555",
//"keybindingTable.headerBackground": "#4e31630a",
//"keybindingTable.rowsBackground": "#4e31630a",
//"list.deemphasizedForeground": "#8e8e90",
//"list.dropBackground": "#d6ebff",
//"list.filterMatchBackground": "#666aaa",
//"list.focusHighlightForeground": "#8225ff",
//"list.focusOutline": "#93a1a1",
//"list.invalidItemForeground": "#b89500",
//"listFilterWidget.background": "#00ffff",
//"listFilterWidget.noMatchesOutline": "#be1100",
//"listFilterWidget.outline": "#00000000",
//"listFilterWidget.shadow": "#666aaa",
//"menu.background": "#00ffff",
//"menu.foreground": "#8225ff",
//"menu.selectionBackground": "#d3d3e7",
//"menu.selectionForeground": "#8225ff",
//"menu.separatorBackground": "#d4d4d4",
//"menubar.selectionBackground": "#b8b8b850",
//"menubar.selectionForeground": "#333333",
//"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": "#9ccc2c66",
//"mergeEditor.changeBase.background": "#ffcccc",
//"mergeEditor.changeBase.word.background": "#ffa3a3",
//"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": "#ffa600",
//"mergeEditor.conflictingLines.background": "#ffea0047",
//"minimap.errorHighlight": "#ff1212b3",
//"minimap.findMatchHighlight": "#d18616",
//"minimap.foregroundOpacity": "#000000",
//"minimap.selectionHighlight": "#add6ff",
//"minimap.selectionOccurrenceHighlight": "#c9c9c9",
//"minimap.warningHighlight": "#8800ff",
//"minimapGutter.addedBackground": "#49d0c5",
//"minimapGutter.deletedBackground": "#f76e6e",
//"minimapGutter.modifiedBackground": "#6fbef6",
//"minimapSlider.activeBackground": "#0000004d",
//"minimapSlider.background": "#64646433",
//"minimapSlider.hoverBackground": "#64646459",
//"notebook.cellBorderColor": "#e0e7ea",
//"notebook.cellEditorBackground": "#00ffff",
//"notebook.cellInsertionIndicator": "#93a1a1",
//"notebook.cellStatusBarItemHoverBackground": "#00000014",
//"notebook.cellToolbarSeparator": "#80808059",
//"notebook.editorBackground": "#00ffff",
//"notebook.focusedCellBorder": "#93a1a1",
//"notebook.focusedEditorBorder": "#93a1a1",
//"notebook.inactiveFocusedCellBorder": "#e0e7ea",
//"notebook.selectedCellBackground": "#e0e7ea",
//"notebook.selectedCellBorder": "#e0e7ea",
//"notebook.symbolHighlightBackground": "#fdff0033",
//"notebookEditorOverviewRuler.runningCellForeground": "#388a34",
//"notebookScrollbarSlider.activeBackground": "#00000099",
//"notebookScrollbarSlider.background": "#64646466",
//"notebookScrollbarSlider.hoverBackground": "#646464b3",
//"notebookStatusErrorIcon.foreground": "#8225ff",
//"notebookStatusRunningIcon.foreground": "#8225ff",
//"notebookStatusSuccessIcon.foreground": "#388a34",
//"notificationsErrorIcon.foreground": "#666aaa",
//"notificationsInfoIcon.foreground": "#1a85ff",
//"notificationsWarningIcon.foreground": "#8800ff",
//"panel.dropBorder": "#424242",
//"panelInput.border": "#dddddd",
//"panelSection.border": "#666aaa",
//"panelSection.dropBackground": "#2677cb2e",
//"panelSectionHeader.background": "#80808033",
//"panelTitle.activeBorder": "#424242",
//"panelTitle.activeForeground": "#424242",
//"panelTitle.inactiveForeground": "#424242bf",
//"peekViewEditorStickyScroll.background": "#fbf8ef",
//"ports.iconRunningProcessForeground": "#8225ff",
//"problemsErrorIcon.foreground": "#666aaa",
//"problemsInfoIcon.foreground": "#1a85ff",
//"problemsWarningIcon.foreground": "#8800ff",
//"profileBadge.background": "#c4c4c4",
//"profileBadge.foreground": "#333333",
//"pullRequests.closed": "#cb2431",
//"pullRequests.draft": "#6e7681",
//"pullRequests.merged": "#8957e5",
//"pullRequests.notification": "#1a85ff",
//"pullRequests.open": "#3fb950",
//"quickInput.background": "#00ffff",
//"quickInput.foreground": "#8225ff",
//"quickInputList.focusBackground": "#d3d3e7",
//"quickInputList.focusForeground": "#8225ff",
//"quickInputTitle.background": "#0000000f",
//"remoteHub.decorations.addedForegroundColor": "#587c0c",
//"remoteHub.decorations.conflictForegroundColor": "#ad0707",
//"remoteHub.decorations.deletedForegroundColor": "#ad0707",
//"remoteHub.decorations.ignoredResourceForeground": "#8e8e90",
//"remoteHub.decorations.incomingAddedForegroundColor": "#587c0c",
//"remoteHub.decorations.incomingDeletedForegroundColor": "#ad0707",
//"remoteHub.decorations.incomingModifiedForegroundColor": "#895503",
//"remoteHub.decorations.incomingRenamedForegroundColor": "#007100",
//"remoteHub.decorations.modifiedForegroundColor": "#895503",
//"remoteHub.decorations.possibleConflictForegroundColor": "#8800ff",
//"remoteHub.decorations.submoduleForegroundColor": "#1258a7",
//"remoteHub.decorations.workspaceRepositoriesView.hasUncommittedChangesForegroundColor": "#895503",
//"sash.hoverBorder": "#93a1a1",
//"scm.providerBorder": "#c8c8c8",
//"scrollbarSlider.activeBackground": "#00000099",
//"scrollbarSlider.background": "#64646466",
//"scrollbarSlider.hoverBackground": "#646464b3",
//"search.resultsInfoForeground": "#8225ff",
//"searchEditor.findMatchBackground": "#93a1a147",
//"searchEditor.textInputBorder": "#666aaa",
//"settings.checkboxBackground": "#00ffff",
//"settings.checkboxBorder": "#666aaa",
//"settings.checkboxForeground": "#8225ff",
//"settings.dropdownBackground": "#00ffff",
//"settings.dropdownBorder": "#666aaa",
//"settings.dropdownForeground": "#8225ff",
//"settings.dropdownListBorder": "#666aaa",
//"settings.focusedRowBackground": "#d3d3e799",
//"settings.focusedRowBorder": "#93a1a1",
//"settings.headerBorder": "#666aaa",
//"settings.headerForeground": "#444444",
//"settings.modifiedItemIndicator": "#66afe0",
//"settings.numberInputBackground": "#00ffff",
//"settings.numberInputBorder": "#666aaa",
//"settings.numberInputForeground": "#8225ff",
//"settings.rowHoverBackground": "#d3d3e74d",
//"settings.sashBorder": "#666aaa",
//"settings.settingsHeaderHoverForeground": "#444444b3",
//"settings.textInputBackground": "#00ffff",
//"settings.textInputBorder": "#666aaa",
//"settings.textInputForeground": "#8225ff",
//"sideBar.dropBackground": "#2677cb2e",
//"sideBarSectionHeader.background": "#80808033",
//"sideBarSectionHeader.foreground": "#8225ff",
//"sideBySideEditor.horizontalBorder": "#00ffff",
//"sideBySideEditor.verticalBorder": "#00ffff",
//"statusBar.debuggingBorder": "#00ffff",
//"statusBar.focusBorder": "#8225ff",
//"statusBar.noFolderBorder": "#00ffff",
//"statusBar.offlineBackground": "#6c1717",
//"statusBar.offlineBorder": "#00ffff",
//"statusBar.offlineForeground": "#8225ff",
//"statusBarItem.activeBackground": "#ffffff2e",
//"statusBarItem.compactHoverBackground": "#ffffff33",
//"statusBarItem.errorBackground": "#2f1d3b",
//"statusBarItem.errorForeground": "#ffffff",
//"statusBarItem.focusBorder": "#8225ff",
//"statusBarItem.hoverBackground": "#ffffff1f",
//"statusBarItem.prominentBackground": "#00000080",
//"statusBarItem.prominentForeground": "#8225ff",
//"statusBarItem.prominentHoverBackground": "#0000004d",
//"statusBarItem.remoteBackground": "#8225ff",
//"statusBarItem.remoteForeground": "#00ffff",
//"statusBarItem.warningBackground": "#6a5a11",
//"statusBarItem.warningForeground": "#ffffff",
//"symbolIcon.arrayForeground": "#8225ff",
//"symbolIcon.booleanForeground": "#8225ff",
//"symbolIcon.classForeground": "#d67e00",
//"symbolIcon.colorForeground": "#8225ff",
//"symbolIcon.constantForeground": "#8225ff",
//"symbolIcon.constructorForeground": "#652d90",
//"symbolIcon.enumeratorForeground": "#d67e00",
//"symbolIcon.enumeratorMemberForeground": "#007acc",
//"symbolIcon.eventForeground": "#d67e00",
//"symbolIcon.fieldForeground": "#007acc",
//"symbolIcon.fileForeground": "#8225ff",
//"symbolIcon.folderForeground": "#8225ff",
//"symbolIcon.functionForeground": "#652d90",
//"symbolIcon.interfaceForeground": "#007acc",
//"symbolIcon.keyForeground": "#8225ff",
//"symbolIcon.keywordForeground": "#8225ff",
//"symbolIcon.methodForeground": "#652d90",
//"symbolIcon.moduleForeground": "#8225ff",
//"symbolIcon.namespaceForeground": "#8225ff",
//"symbolIcon.nullForeground": "#8225ff",
//"symbolIcon.numberForeground": "#8225ff",
//"symbolIcon.objectForeground": "#8225ff",
//"symbolIcon.operatorForeground": "#8225ff",
//"symbolIcon.packageForeground": "#8225ff",
//"symbolIcon.propertyForeground": "#8225ff",
//"symbolIcon.referenceForeground": "#8225ff",
//"symbolIcon.snippetForeground": "#8225ff",
//"symbolIcon.stringForeground": "#8225ff",
//"symbolIcon.structForeground": "#8225ff",
//"symbolIcon.textForeground": "#8225ff",
//"symbolIcon.typeParameterForeground": "#8225ff",
//"symbolIcon.unitForeground": "#8225ff",
//"symbolIcon.variableForeground": "#007acc",
//"tab.lastPinnedBorder": "#a9a9a9",
//"tab.unfocusedActiveBackground": "#00ffff",
//"tab.unfocusedActiveForeground": "#4e3163b3",
//"tab.unfocusedInactiveBackground": "#e4e4e4",
//"tab.unfocusedInactiveForeground": "#4e316380",
//"terminal.border": "#666aaa",
//"terminal.dropBackground": "#2677cb2e",
//"terminal.findMatchBackground": "#666aaa",
//"terminal.findMatchHighlightBackground": "#666aaa",
//"terminal.hoverHighlightBackground": "#339cec1a",
//"terminal.inactiveSelectionBackground": "#e0e0e080",
//"terminal.selectionBackground": "#e0e0e0",
//"terminalCommandDecoration.defaultBackground": "#00000040",
//"terminalCommandDecoration.errorBackground": "#e51400",
//"terminalCommandDecoration.successBackground": "#2090d3",
//"terminalOverviewRuler.cursorForeground": "#a0a0a0cc",
//"terminalOverviewRuler.findMatchForeground": "#d186167e",
//"testing.iconErrored": "#f14c4c",
//"testing.iconFailed": "#f14c4c",
//"testing.iconPassed": "#73c991",
//"testing.iconQueued": "#cca700",
//"testing.iconSkipped": "#848484",
//"testing.iconUnset": "#848484",
//"testing.message.error.decorationForeground": "#666aaa",
//"testing.message.error.lineBackground": "#ff000033",
//"testing.message.info.decorationForeground": "#4e316380",
//"testing.peekBorder": "#666aaa",
//"testing.peekHeaderBackground": "#e64d491a",
//"testing.runAction": "#73c991",
//"textBlockQuote.background": "#7f7f7f1a",
//"textBlockQuote.border": "#007acc80",
//"textCodeBlock.background": "#dcdcdc66",
//"textLink.activeForeground": "#006ab1",
//"textLink.foreground": "#006ab1",
//"textPreformat.foreground": "#a31515",
//"textSeparator.foreground": "#0000002e",
//"titleBar.activeForeground": "#333333",
//"titleBar.inactiveBackground": "#efeae999",
//"titleBar.inactiveForeground": "#33333399",
//"toolbar.activeBackground": "#a6a6a650",
//"toolbar.hoverBackground": "#b8b8b850",
//"tree.inactiveIndentGuidesStroke": "#a9a9a966",
//"tree.indentGuidesStroke": "#a9a9a9",
//"tree.tableColumnsBorder": "#61616120",
//"tree.tableOddRowsBackground": "#4e31630a",
//"walkThrough.embeddedEditorBackground": "#f4f4f4",
//"walkthrough.stepTitle.foreground": "#000000",
//"welcomePage.progress.background": "#00ffff",
//"welcomePage.progress.foreground": "#006ab1",
//"welcomePage.tileBackground": "#00ffff",
//"welcomePage.tileBorder": "#0000001a",
//"welcomePage.tileHoverBackground": "#dbd0ce",
//"activityBar.activeBackground": null,
//"activityBar.activeFocusBorder": 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.findMatchHighlightBorder": 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,
//"editorGhostText.background": null,
//"editorGhostText.border": null,
//"editorGroup.dropIntoPromptBorder": null,
//"editorGroup.focusedEmptyBorder": null,
//"editorGroupHeader.border": null,
//"editorHint.border": null,
//"editorInfo.background": null,
//"editorInfo.border": null,
//"editorLineNumber.dimmedForeground": null,
//"editorOverviewRuler.background": null,
//"editorSuggestWidget.selectedIconForeground": null,
//"editorUnnecessaryCode.border": null,
//"editorWarning.background": null,
//"editorWidget.resizeBorder": null,
//"inputValidation.errorForeground": null,
//"inputValidation.infoForeground": null,
//"inputValidation.warningForeground": null,
//"list.activeSelectionIconForeground": null,
//"list.filterMatchBorder": null,
//"list.focusAndSelectionOutline": null,
//"list.inactiveFocusBackground": null,
//"list.inactiveFocusOutline": 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,
//"panelSectionHeader.border": null,
//"panelSectionHeader.foreground": null,
//"peekViewEditor.matchHighlightBorder": null,
//"quickInput.list.focusBackground": null,
//"quickInputList.focusIconForeground": null,
//"searchEditor.findMatchBorder": null,
//"sideBarSectionHeader.border": null,
//"tab.activeBorder": null,
//"tab.activeBorderTop": null,
//"tab.hoverBackground": null,
//"tab.hoverBorder": null,
//"tab.hoverForeground": null,
//"tab.unfocusedActiveBorder": null,
//"tab.unfocusedActiveBorderTop": null,
//"tab.unfocusedHoverBackground": null,
//"tab.unfocusedHoverBorder": null,
//"tab.unfocusedHoverForeground": null,
//"terminal.findMatchBorder": null,
//"terminal.findMatchHighlightBorder": null,
//"terminal.selectionForeground": null,
//"terminal.tab.activeBorder": null,
//"terminalCursor.background": null,
//"terminalCursor.foreground": null,
//"testing.message.info.lineBackground": null,
//"titleBar.border": null,
//"toolbar.hoverOutline": null,
//"welcomePage.background": null,
//"widget.border": null,
//"window.activeBorder": null,
//"window.inactiveBorder": null
},
"tokenColors": [
{
"scope": [
"markup.changed",
"meta.diff.header.git",
"meta.diff.header.from-file",
"meta.diff.header.to-file"
],
"settings": {
"foreground": "#A2BFFC",
"fontStyle": "italic"
}
},
{
"scope": "markup.deleted.diff",
"settings": {
"foreground": "#EF535090",
"fontStyle": "italic"
}
},
{
"scope": "markup.inserted.diff",
"settings": {
"foreground": "#8225ff",
"fontStyle": "italic"
}
},
{
"scope": "comment",
"settings": {
"foreground": "#989FB1",
"fontStyle": "italic"
}
},
{
"scope": "string",
"settings": {
"foreground": "#8225ff"
}
},
{
"scope": [
"string.quoted"
],
"settings": {
"foreground": "#8225ff"
}
},
{
"scope": "support.constant.math",
"settings": {
"foreground": "#8225ff"
}
},
{
"scope": [
"constant.numeric",
"constant.character.numeric"
],
"settings": {
"foreground": "#8225ff",
"fontStyle": ""
}
},
{
"scope": [
"constant.language",
"punctuation.definition.constant",
"variable.other.constant"
],
"settings": {
"foreground": "#8225ff"
}
},
{
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#8225ff"
}
},
{
"scope": "constant.character.escape",
"settings": {
"foreground": "#8225ff"
}
},
{
"scope": [
"string.regexp",
"string.regexp keyword.other"
],
"settings": {
"foreground": "#5CA7E4"
}
},
{
"scope": "meta.function punctuation.separator.comma",
"settings": {
"foreground": "#5F7E97"
}
},
{
"scope": "variable",
"settings": {
"foreground": "#8225ff"
}
},
{
"scope": [
"punctuation.accessor",
"keyword"
],
"settings": {
"foreground": "#8225ff",
"fontStyle": "italic"
}
},
{
"scope": "storage.type",
"settings": {
"foreground": "#8225ff"
}
},
{
"scope": "storage.type.function.arrow.js",
"settings": {
"fontStyle": ""
}
},
{
"scope": [
"entity.name.class",
"meta.class entity.name.type.class"
],
"settings": {
"foreground": "#8225ff"
}
},
{
"scope": "entity.other.inherited-class",
"settings": {
"foreground": "#8225ff"
}
},
{
"scope": "entity.name.function",
"settings": {
"foreground": "#8225ff",
"fontStyle": "italic"
}
},
{
"scope": [
"punctuation.definition.tag",
"meta.tag"
],
"settings": {
"foreground": "#8225ff"
}
},
{
"scope": [
"entity.name.tag",
"meta.tag.other.html",
"meta.tag.other.js",
"meta.tag.other.tsx",
"entity.name.tag.tsx",
"entity.name.tag.js",
"entity.name.tag",
"meta.tag.js",
"meta.tag.tsx",
"meta.tag.html"
],
"settings": {
"foreground": "#8225ff",
"fontStyle": ""
}
},
{
"scope": "entity.other.attribute-name",
"settings": {
"foreground": "#8225ff",
"fontStyle": "italic"
}
},
{
"scope": "entity.name.tag.custom",
"settings": {
"foreground": "#8225ff"
}
},
{
"scope": [
"support.function",
"support.constant"
],
"settings": {
"foreground": "#8225ff"
}
},
{
"scope": "support.constant.meta.property-value",
"settings": {
"foreground": "#8225ff"
}
},
{
"scope": [
"support.type",
"support.class"
],
"settings": {
"foreground": "#8225ff"
}
},
{
"scope": "support.variable.dom",
"settings": {
"foreground": "#8225ff"
}
},
{
"scope": "invalid",
"settings": {
"foreground": "#FF2C83"
}
},
{
"scope": "invalid.deprecated",
"settings": {
"foreground": "#D3423E"
}
},
{
"scope": "keyword.operator",
"settings": {
"foreground": "#8225ff",
"fontStyle": ""
}
},
{
"scope": "keyword.operator.relational",
"settings": {
"foreground": "#8225ff",
"fontStyle": "italic"
}
},
{
"scope": "keyword.operator.assignment",
"settings": {
"foreground": "#8225ff"
}
},
{
"scope": "keyword.operator.arithmetic",
"settings": {
"foreground": "#8225ff"
}
},
{
"scope": "keyword.operator.bitwise",
"settings": {
"foreground": "#8225ff"
}
},
{
"scope": "keyword.operator.increment",
"settings": {
"foreground": "#8225ff"
}
},
{
"scope": "keyword.operator.ternary",
"settings": {
"foreground": "#8225ff"
}
},
{
"scope": "comment.line.double-slash",
"settings": {
"foreground": "#939DBB"
}
},
{
"scope": "object",
"settings": {
"foreground": "#aaaaff"
}
},
{
"scope": "constant.language.null",
"settings": {