-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtokyonightlight.jsonc
1992 lines (1992 loc) · 67.1 KB
/
tokyonightlight.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": "light",
"colors": {
"activityBar.activeBorder": "#2959aa",
"activityBar.background": "#d6d8df",
"activityBar.border": "#d6d8df",
"activityBar.foreground": "#363c4d",
"activityBar.inactiveForeground": "#7d7f8f",
"activityBarBadge.background": "#2959aa",
"activityBarBadge.foreground": "#ffffff",
"activityBarTop.activeBorder": "#2959aa",
"activityBarTop.foreground": "#363c4d",
"activityBarTop.inactiveForeground": "#707280",
"badge.background": "#979db833",
"badge.foreground": "#363c4d",
"breadcrumb.activeSelectionForeground": "#363c4d",
"breadcrumb.background": "#d6d8df",
"breadcrumb.focusForeground": "#363c4d",
"breadcrumb.foreground": "#707280",
"breadcrumbPicker.background": "#d6d8df",
"button.background": "#2959aadd",
"button.foreground": "#ffffff",
"button.hoverBackground": "#2959aaaa",
"button.secondaryBackground": "#707280",
"charts.blue": "#2959aa",
"charts.foreground": "#40434f",
"charts.green": "#33635c",
"charts.lines": "#f4f5f8",
"charts.orange": "#965027",
"charts.purple": "#5a3e8e",
"charts.red": "#8c4351",
"charts.yellow": "#8f5e15",
"debugConsole.errorForeground": "#942f2f",
"debugConsole.infoForeground": "#166775",
"debugExceptionWidget.background": "#acb0bf40",
"debugExceptionWidget.border": "#942f2f",
"debugIcon.breakpointDisabledForeground": "#707280",
"debugIcon.breakpointForeground": "#db4b4b",
"debugIcon.breakpointUnverifiedForeground": "#c24242",
"debugIcon.continueForeground": "#3e6396",
"debugIcon.pauseForeground": "#3e6396",
"debugIcon.startForeground": "#2959aa",
"debugIcon.stepBackForeground": "#3e6396",
"debugIcon.stepIntoForeground": "#3e6396",
"debugIcon.stepOutForeground": "#3e6396",
"debugIcon.stepOverForeground": "#3e6396",
"debugTokenExpression.boolean": "#965027",
"debugTokenExpression.error": "#942f2f",
"debugTokenExpression.name": "#2959aa",
"debugTokenExpression.number": "#965027",
"debugTokenExpression.string": "#385f0d",
"debugTokenExpression.value": "#40434f",
"debugToolBar.background": "#e6e7ed",
"debugView.stateLabelBackground": "#e6e7ed",
"debugView.stateLabelForeground": "#363c4d",
"debugView.valueChangedHighlight": "#f4f5f8",
"descriptionForeground": "#707280",
"diffEditor.diagonalFill": "#cacbcf",
"diffEditor.insertedLineBackground": "#2d9c9120",
"diffEditor.insertedTextBackground": "#2d9c9120",
"diffEditor.removedLineBackground": "#e8686812",
"diffEditor.removedTextBackground": "#e8686812",
"diffEditor.unchangedCodeBackground": "#c7c9d425",
"diffEditorGutter.insertedLineBackground": "#2d9c9120",
"diffEditorGutter.removedLineBackground": "#e8686812",
"diffEditorOverview.insertedForeground": "#2d9c9120",
"diffEditorOverview.removedForeground": "#e8686812",
"dropdown.background": "#e6e7ed",
"dropdown.border": "#c1c2c7",
"dropdown.foreground": "#363c4d",
"dropdown.listBackground": "#e6e7ed",
"editor.background": "#e6e7ed",
"editor.findMatchBackground": "#2d9c9130",
"editor.findMatchHighlightBackground": "#2d9c9120",
"editor.findRangeHighlightBackground": "#2959aa15",
"editor.focusedStackFrameHighlightBackground": "#c5e3d0",
"editor.foldBackground": "#b2b3b833",
"editor.foreground": "#343b59",
"editor.inactiveSelectionBackground": "#acb0bf33",
"editor.lineHighlightBackground": "#dcdee3",
"editor.rangeHighlightBackground": "#b3b6c320",
"editor.selectionBackground": "#acb0bf40",
"editor.selectionHighlightBackground": "#9aa5ce55",
"editor.stackFrameHighlightBackground": "#e7e8c8",
"editor.wordHighlightBackground": "#9aa5ce33",
"editor.wordHighlightStrongBackground": "#9aa5ce66",
"editorBracketHighlight.foreground1": "#698cd6",
"editorBracketHighlight.foreground2": "#68b3de",
"editorBracketHighlight.foreground3": "#9a7ecc",
"editorBracketHighlight.foreground4": "#25aac2",
"editorBracketHighlight.foreground5": "#80a856",
"editorBracketHighlight.foreground6": "#cfa25f",
"editorBracketHighlight.unexpectedBracket.foreground": "#bd4040",
"editorBracketMatch.background": "#cdced1",
"editorBracketMatch.border": "#dcdee3",
"editorBracketPairGuide.activeBackground1": "#698cd6",
"editorBracketPairGuide.activeBackground2": "#68b3de",
"editorBracketPairGuide.activeBackground3": "#9a7ecc",
"editorBracketPairGuide.activeBackground4": "#25aac2",
"editorBracketPairGuide.activeBackground5": "#80a856",
"editorBracketPairGuide.activeBackground6": "#cfa25f",
"editorCodeLens.foreground": "#868891",
"editorCursor.foreground": "#363c4d",
"editorError.foreground": "#bd4040",
"editorGhostText.foreground": "#73767d",
"editorGroup.border": "#c1c2c7",
"editorGroup.dropBackground": "#c1c2c7",
"editorGroupHeader.border": "#c1c2c7",
"editorGroupHeader.noTabsBackground": "#d6d8df",
"editorGroupHeader.tabsBackground": "#d6d8df",
"editorGroupHeader.tabsBorder": "#c1c2c7",
"editorGutter.addedBackground": "#71b6bd",
"editorGutter.deletedBackground": "#a8626a",
"editorGutter.modifiedBackground": "#637dbf",
"editorHint.foreground": "#0da0ba",
"editorHoverWidget.background": "#dcdee3",
"editorHoverWidget.border": "#c1c2c7",
"editorIndentGuide.activeBackground1": "#bdc1cf",
"editorIndentGuide.background1": "#d0d4e3",
"editorInfo.foreground": "#0da0ba",
"editorLineNumber.activeForeground": "#363c4d",
"editorLineNumber.foreground": "#9da0ab",
"editorLink.activeForeground": "#1f2335",
"editorMarkerNavigation.background": "#d6d8df",
"editorOverviewRuler.addedForeground": "#71b6bd",
"editorOverviewRuler.border": "#c1c2c7",
"editorOverviewRuler.bracketMatchForeground": "#c1c2c7",
"editorOverviewRuler.deletedForeground": "#a8626a",
"editorOverviewRuler.errorForeground": "#bd4040",
"editorOverviewRuler.findMatchForeground": "#363c4d44",
"editorOverviewRuler.infoForeground": "#1abc9c",
"editorOverviewRuler.modifiedForeground": "#637dbf",
"editorOverviewRuler.rangeHighlightForeground": "#363c4d44",
"editorOverviewRuler.selectionHighlightForeground": "#363c4d22",
"editorOverviewRuler.warningForeground": "#8f5e15",
"editorOverviewRuler.wordHighlightForeground": "#5a3e8e55",
"editorOverviewRuler.wordHighlightStrongForeground": "#5a3e8e66",
"editorPane.background": "#d6d8df",
"editorRuler.foreground": "#c1c2c7",
"editorSuggestWidget.background": "#dcdee3",
"editorSuggestWidget.border": "#c1c2c7",
"editorSuggestWidget.highlightForeground": "#2959aa",
"editorSuggestWidget.selectedBackground": "#e8e9ed",
"editorWarning.foreground": "#8f5e15",
"editorWhitespace.foreground": "#e6e7ed",
"editorWidget.background": "#d6d8df",
"editorWidget.foreground": "#363c4d",
"editorWidget.resizeBorder": "#70728033",
"errorForeground": "#5a607d",
"extensionBadge.remoteBackground": "#2959aa",
"extensionBadge.remoteForeground": "#ffffff",
"extensionButton.prominentBackground": "#2959aadd",
"extensionButton.prominentForeground": "#ffffff",
"extensionButton.prominentHoverBackground": "#2959aaaa",
"focusBorder": "#70728033",
"foreground": "#363c4d",
"gitDecoration.addedResourceForeground": "#166775",
"gitDecoration.conflictingResourceForeground": "#8f5e15",
"gitDecoration.deletedResourceForeground": "#914c54",
"gitDecoration.ignoredResourceForeground": "#707280",
"gitDecoration.modifiedResourceForeground": "#2959aa",
"gitDecoration.renamedResourceForeground": "#166775",
"gitDecoration.stageDeletedResourceForeground": "#914c54",
"gitDecoration.stageModifiedResourceForeground": "#2959aa",
"gitDecoration.untrackedResourceForeground": "#166775",
"gitlens.gutterBackgroundColor": "#dcdee3",
"gitlens.gutterForegroundColor": "#363c4d",
"gitlens.gutterUncommittedForegroundColor": "#2959aa",
"gitlens.trailingLineForegroundColor": "#73767d",
"icon.foreground": "#707280",
"input.background": "#e6e7ed",
"input.border": "#c1c2c7",
"input.foreground": "#363c4d",
"input.placeholderForeground": "#4a5272",
"inputOption.activeBackground": "#2959aa44",
"inputValidation.errorBackground": "#85353e",
"inputValidation.errorBorder": "#942f2f",
"inputValidation.errorForeground": "#e8e9ed",
"inputValidation.infoBackground": "#3d59a15c",
"inputValidation.infoBorder": "#3d59a1",
"inputValidation.infoForeground": "#000000",
"inputValidation.warningBackground": "#c2985b",
"inputValidation.warningBorder": "#8f5e15",
"inputValidation.warningForeground": "#000000",
"list.activeSelectionBackground": "#e6e7ed",
"list.activeSelectionForeground": "#363c4d",
"list.deemphasizedForeground": "#363c4d",
"list.dropBackground": "#c1c2c7",
"list.errorForeground": "#942f2f",
"list.focusBackground": "#e6e7ed",
"list.focusForeground": "#363c4d",
"list.highlightForeground": "#2959aa",
"list.hoverBackground": "#e1e2e8",
"list.hoverForeground": "#363c4d",
"list.inactiveSelectionBackground": "#e6e7ed",
"list.inactiveSelectionForeground": "#363c4d",
"list.invalidItemForeground": "#c97018",
"list.warningForeground": "#8f5e15",
"listFilterWidget.background": "#e6e7ed",
"listFilterWidget.noMatchesOutline": "#a6333f",
"listFilterWidget.outline": "#2959aa",
"menu.background": "#d6d8df",
"menu.border": "#c1c2c7",
"menu.foreground": "#363c4d",
"menu.selectionBackground": "#7a85a8",
"menu.selectionForeground": "#343b58",
"menu.separatorBackground": "#c1c2c7",
"menubar.selectionBackground": "#7a85a8",
"menubar.selectionBorder": "#c1c2c7",
"menubar.selectionForeground": "#343b58",
"merge.currentContentBackground": "#007a7544",
"merge.currentHeaderBackground": "#007a75aa",
"merge.incomingContentBackground": "#2959aa44",
"merge.incomingHeaderBackground": "#2959aaaa",
"mergeEditor.change.background": "#007a7522",
"mergeEditor.change.word.background": "#007a7522",
"mergeEditor.conflict.handled.minimapOverViewRuler": "#007a75",
"mergeEditor.conflict.handledFocused.border": "#007a7525",
"mergeEditor.conflict.handledUnfocused.border": "#007a7525",
"mergeEditor.conflict.unhandled.minimapOverViewRuler": "#bb7a61",
"mergeEditor.conflict.unhandledFocused.border": "#bb7a61",
"mergeEditor.conflict.unhandledUnfocused.border": "#bb7a6188",
"minimap.errorHighlight": "#bd4040",
"multiDiffEditor.border": "#e6e7ed",
"multiDiffEditor.headerBackground": "#e6e7ed",
"notebook.cellBorderColor": "#c1c2c7",
"notebook.cellEditorBackground": "#d6d8df",
"notebook.cellStatusBarItemHoverBackground": "#e6e7ed",
"notebook.editorBackground": "#e6e7ed",
"notebook.focusedCellBorder": "#707280",
"notificationCenterHeader.background": "#dcdee3",
"notificationLink.foreground": "#2959aa",
"notifications.background": "#dcdee3",
"notificationsErrorIcon.foreground": "#bb616b",
"notificationsInfoIcon.foreground": "#637dbf",
"notificationsWarningIcon.foreground": "#bba461",
"panel.background": "#d6d8df",
"panel.border": "#c1c2c7",
"panelInput.border": "#e6e7ed",
"panelTitle.activeBorder": "#2959aa",
"panelTitle.activeForeground": "#363c4d",
"panelTitle.inactiveForeground": "#707280",
"peekView.border": "#c1c2c7",
"peekViewEditor.background": "#dcdee3",
"peekViewEditor.matchHighlightBackground": "#2959aa22",
"peekViewResult.background": "#d7d9de",
"peekViewResult.fileForeground": "#363c4d",
"peekViewResult.lineForeground": "#363c4d",
"peekViewResult.matchHighlightBackground": "#2959aa22",
"peekViewResult.selectionBackground": "#2959aa33",
"peekViewResult.selectionForeground": "#363c4d",
"peekViewTitle.background": "#d6d8df",
"peekViewTitleDescription.foreground": "#363c4d",
"peekViewTitleLabel.foreground": "#363c4d",
"pickerGroup.border": "#c1c2c7",
"pickerGroup.foreground": "#363c4d",
"progressBar.background": "#2959aa",
"sash.hoverBorder": "#707280",
"scrollbar.shadow": "#00000033",
"scrollbarSlider.activeBackground": "#90929632",
"scrollbarSlider.background": "#90929625",
"scrollbarSlider.hoverBackground": "#90929620",
"selection.background": "#acb0bf55",
"settings.headerForeground": "#2959aa",
"sideBar.background": "#d6d8df",
"sideBar.border": "#c1c2c7",
"sideBar.dropBackground": "#c1c2c7",
"sideBar.foreground": "#363c4d",
"sideBarSectionHeader.background": "#d6d8df",
"sideBarSectionHeader.border": "#c1c2c7",
"sideBarSectionHeader.foreground": "#363c4d",
"sideBarTitle.foreground": "#363c4d",
"statusBar.background": "#d6d8df",
"statusBar.border": "#c1c2c7",
"statusBar.debuggingBackground": "#e6e7ed",
"statusBar.debuggingForeground": "#363c4d",
"statusBar.foreground": "#363c4d",
"statusBar.noFolderBackground": "#e6e7ed",
"statusBarItem.activeBackground": "#c1c2c7",
"statusBarItem.hoverBackground": "#e6e7ed",
"statusBarItem.prominentBackground": "#c1c2c7",
"statusBarItem.prominentHoverBackground": "#e6e7ed",
"tab.activeBackground": "#dadce3",
"tab.activeBorder": "#2959aa",
"tab.activeForeground": "#363c4d",
"tab.activeModifiedBorder": "#e6e7ed",
"tab.border": "#c1c2c7",
"tab.hoverBackground": "#dadce3",
"tab.hoverForeground": "#1f222b",
"tab.inactiveBackground": "#d6d8df",
"tab.inactiveForeground": "#363c4d",
"tab.inactiveModifiedBorder": "#e6e7ed",
"tab.lastPinnedBorder": "#dadbe0",
"tab.selectedBackground": "#d6d8df",
"tab.unfocusedActiveBorder": "#9da0ab",
"tab.unfocusedActiveForeground": "#363c4d",
"tab.unfocusedHoverForeground": "#363c4d",
"tab.unfocusedInactiveForeground": "#363c4d",
"terminal.ansiBlack": "#343b58",
"terminal.ansiBlue": "#2959aa",
"terminal.ansiBrightBlack": "#343b58",
"terminal.ansiBrightBlue": "#2959aa",
"terminal.ansiBrightCyan": "#006c86",
"terminal.ansiBrightGreen": "#33635c",
"terminal.ansiBrightMagenta": "#7b43ba",
"terminal.ansiBrightRed": "#8c4351",
"terminal.ansiBrightWhite": "#707280",
"terminal.ansiBrightYellow": "#8f5e15",
"terminal.ansiCyan": "#006c86",
"terminal.ansiGreen": "#33635c",
"terminal.ansiMagenta": "#7b43ba",
"terminal.ansiRed": "#8c4351",
"terminal.ansiWhite": "#707280",
"terminal.ansiYellow": "#8f5e15",
"terminal.background": "#d6d8df",
"terminal.foreground": "#343b58",
"terminal.selectionBackground": "#acb0bf40",
"terminalCursor.foreground": "#707280",
"textBlockQuote.background": "#d6d8df",
"textCodeBlock.background": "#e6e7ed",
"textLink.activeForeground": "#363c4d",
"textLink.foreground": "#2959aa",
"textPreformat.foreground": "#33635c",
"textSeparator.foreground": "#707280",
"titleBar.activeBackground": "#d6d8df",
"titleBar.activeForeground": "#363c4d",
"titleBar.border": "#c1c2c7",
"titleBar.inactiveBackground": "#d6d8df",
"titleBar.inactiveForeground": "#363c4d",
"toolbar.activeBackground": "#acb0bf40",
"toolbar.hoverBackground": "#acb0bf40",
"tree.indentGuidesStroke": "#c1c2c7",
"walkThrough.embeddedEditorBackground": "#d6d8df",
"widget.shadow": "#ffffff00",
"window.activeBorder": "#cdced1",
"window.inactiveBorder": "#cdced1",
//"actionBar.toggledBackground": "#2959aa44",
//"activityBar.dropBorder": "#363c4d",
//"activityBarTop.dropBorder": "#363c4d",
//"activityErrorBadge.background": "#e51400",
//"activityErrorBadge.foreground": "#ffffff",
//"activityWarningBadge.background": "#bf8803",
//"activityWarningBadge.foreground": "#ffffff",
//"banner.background": "#9599b2",
//"banner.foreground": "#363c4d",
//"banner.iconForeground": "#0da0ba",
//"button.secondaryForeground": "#ffffff",
//"button.secondaryHoverBackground": "#5a5b67",
//"button.separator": "#ffffff66",
//"chart.axis": "#00000099",
//"chart.guide": "#00000033",
//"chart.line": "#236b8e",
//"chat.avatarBackground": "#f2f2f2",
//"chat.avatarForeground": "#363c4d",
//"chat.editedFileForeground": "#895503",
//"chat.requestBackground": "#e6e7ed9e",
//"chat.requestBorder": "#0000001a",
//"chat.slashCommandBackground": "#d2ecff99",
//"chat.slashCommandForeground": "#306ca2",
//"checkbox.background": "#e6e7ed",
//"checkbox.border": "#c1c2c7",
//"checkbox.foreground": "#363c4d",
//"checkbox.selectBackground": "#d6d8df",
//"checkbox.selectBorder": "#707280",
//"clangd.inactiveRegions.background": "#dcdcdc4c",
//"commandCenter.activeBackground": "#00000014",
//"commandCenter.activeBorder": "#363c4d4d",
//"commandCenter.activeForeground": "#343b58",
//"commandCenter.background": "#0000000d",
//"commandCenter.border": "#363c4d33",
//"commandCenter.debuggingBackground": "#e6e7ed42",
//"commandCenter.foreground": "#363c4d",
//"commandCenter.inactiveBorder": "#363c4d40",
//"commandCenter.inactiveForeground": "#363c4d",
//"commentsView.resolvedIcon": "#61616180",
//"commentsView.unresolvedIcon": "#70728033",
//"debugConsole.sourceForeground": "#363c4d",
//"debugConsole.warningForeground": "#8f5e15",
//"debugConsoleInputIcon.foreground": "#363c4d",
//"debugIcon.breakpointCurrentStackframeForeground": "#be8700",
//"debugIcon.breakpointStackframeForeground": "#89d185",
//"debugIcon.disconnectForeground": "#a1260d",
//"debugIcon.restartForeground": "#388a34",
//"debugIcon.stopForeground": "#a1260d",
//"debugTokenExpression.type": "#4a90e2",
//"debugView.exceptionLabelBackground": "#a31515",
//"debugView.exceptionLabelForeground": "#ffffff",
//"diffEditor.move.border": "#8b8b8b9c",
//"diffEditor.moveActive.border": "#ffa500",
//"diffEditor.unchangedRegionBackground": "#d6d8df",
//"diffEditor.unchangedRegionForeground": "#363c4d",
//"diffEditor.unchangedRegionShadow": "#737373bf",
//"disabledForeground": "#61616180",
//"editor.compositionBorder": "#000000",
//"editor.foldPlaceholderForeground": "#808080",
//"editor.hoverHighlightBackground": "#add6ff26",
//"editor.inlineValuesBackground": "#ffc80033",
//"editor.inlineValuesForeground": "#00000080",
//"editor.lineHighlightBorder": "#eeeeee",
//"editor.linkedEditingBackground": "#ff00004d",
//"editor.placeholder.foreground": "#73767d",
//"editor.snippetFinalTabstopHighlightBorder": "#0a326480",
//"editor.snippetTabstopHighlightBackground": "#0a326433",
//"editor.symbolHighlightBackground": "#2d9c9120",
//"editor.wordHighlightTextBackground": "#9aa5ce33",
//"editorActionList.background": "#d6d8df",
//"editorActionList.focusBackground": "#e6e7ed",
//"editorActionList.focusForeground": "#363c4d",
//"editorActionList.foreground": "#363c4d",
//"editorActiveLineNumber.foreground": "#0b216f",
//"editorBracketPairGuide.background1": "#00000000",
//"editorBracketPairGuide.background2": "#00000000",
//"editorBracketPairGuide.background3": "#00000000",
//"editorBracketPairGuide.background4": "#00000000",
//"editorBracketPairGuide.background5": "#00000000",
//"editorBracketPairGuide.background6": "#00000000",
//"editorCommentsWidget.rangeActiveBackground": "#70728005",
//"editorCommentsWidget.rangeBackground": "#70728005",
//"editorCommentsWidget.replyInputBackground": "#d6d8df",
//"editorCommentsWidget.resolvedBorder": "#61616180",
//"editorCommentsWidget.unresolvedBorder": "#70728033",
//"editorGroup.dropIntoPromptBackground": "#d6d8df",
//"editorGroup.dropIntoPromptForeground": "#363c4d",
//"editorGutter.background": "#e6e7ed",
//"editorGutter.commentGlyphForeground": "#343b59",
//"editorGutter.commentRangeForeground": "#d8dae3",
//"editorGutter.commentUnresolvedGlyphForeground": "#343b59",
//"editorGutter.foldingControlForeground": "#707280",
//"editorHoverWidget.foreground": "#363c4d",
//"editorHoverWidget.highlightForeground": "#2959aa",
//"editorHoverWidget.statusBarBackground": "#cfd2d9",
//"editorIndentGuide.activeBackground": "#e6e7ed",
//"editorIndentGuide.activeBackground2": "#00000000",
//"editorIndentGuide.activeBackground3": "#00000000",
//"editorIndentGuide.activeBackground4": "#00000000",
//"editorIndentGuide.activeBackground5": "#00000000",
//"editorIndentGuide.activeBackground6": "#00000000",
//"editorIndentGuide.background": "#e6e7ed",
//"editorIndentGuide.background2": "#00000000",
//"editorIndentGuide.background3": "#00000000",
//"editorIndentGuide.background4": "#00000000",
//"editorIndentGuide.background5": "#00000000",
//"editorIndentGuide.background6": "#00000000",
//"editorInlayHint.background": "#979db805",
//"editorInlayHint.foreground": "#969696",
//"editorInlayHint.parameterBackground": "#979db805",
//"editorInlayHint.parameterForeground": "#969696",
//"editorInlayHint.typeBackground": "#979db805",
//"editorInlayHint.typeForeground": "#969696",
//"editorLightBulb.foreground": "#ddb100",
//"editorLightBulbAi.foreground": "#ddb100",
//"editorLightBulbAutoFix.foreground": "#007acc",
//"editorMarkerNavigationError.background": "#bd4040",
//"editorMarkerNavigationError.headerBackground": "#bd40401a",
//"editorMarkerNavigationInfo.background": "#0da0ba",
//"editorMarkerNavigationInfo.headerBackground": "#0da0ba1a",
//"editorMarkerNavigationWarning.background": "#8f5e15",
//"editorMarkerNavigationWarning.headerBackground": "#8f5e151a",
//"editorMultiCursor.primary.foreground": "#363c4d",
//"editorMultiCursor.secondary.foreground": "#363c4d",
//"editorOverviewRuler.commentForeground": "#d8dae3",
//"editorOverviewRuler.commentUnresolvedForeground": "#d8dae3",
//"editorOverviewRuler.commonContentForeground": "#60606066",
//"editorOverviewRuler.currentContentForeground": "#007a75aa",
//"editorOverviewRuler.incomingContentForeground": "#2959aaaa",
//"editorOverviewRuler.inlineChatInserted": "#2d9c911a",
//"editorOverviewRuler.inlineChatRemoved": "#e868680f",
//"editorOverviewRuler.wordHighlightTextForeground": "#363c4d22",
//"editorStickyScroll.background": "#e6e7ed",
//"editorStickyScroll.shadow": "#00000033",
//"editorStickyScrollHover.background": "#f0f0f0",
//"editorSuggestWidget.focusHighlightForeground": "#2959aa",
//"editorSuggestWidget.foreground": "#343b59",
//"editorSuggestWidget.selectedForeground": "#363c4d",
//"editorSuggestWidgetStatus.foreground": "#343b5980",
//"editorUnicodeHighlight.border": "#8f5e15",
//"editorUnnecessaryCode.opacity": "#00000077",
//"editorWatermark.foreground": "#343b59ad",
//"editorWidget.border": "#c8c8c8",
//"extensionButton.background": "#2959aadd",
//"extensionButton.foreground": "#ffffff",
//"extensionButton.hoverBackground": "#2959aaaa",
//"extensionButton.separator": "#ffffff66",
//"extensionIcon.preReleaseForeground": "#1d9271",
//"extensionIcon.sponsorForeground": "#b51e78",
//"extensionIcon.starForeground": "#df6100",
//"extensionIcon.verifiedForeground": "#2959aa",
//"git.blame.editorDecorationForeground": "#868891",
//"gitDecoration.submoduleResourceForeground": "#1258a7",
//"gitlens.closedAutolinkedIssueIconColor": "#8250df",
//"gitlens.closedPullRequestIconColor": "#cf222e",
//"gitlens.decorations.addedForegroundColor": "#166775",
//"gitlens.decorations.branchAheadForegroundColor": "#35b15e",
//"gitlens.decorations.branchBehindForegroundColor": "#b15e35",
//"gitlens.decorations.branchDivergedForegroundColor": "#d8af1b",
//"gitlens.decorations.branchMissingUpstreamForegroundColor": "#ad0707",
//"gitlens.decorations.branchUnpublishedForegroundColor": "#363c4d",
//"gitlens.decorations.branchUpToDateForegroundColor": "#363c4d",
//"gitlens.decorations.copiedForegroundColor": "#166775",
//"gitlens.decorations.deletedForegroundColor": "#914c54",
//"gitlens.decorations.ignoredForegroundColor": "#707280",
//"gitlens.decorations.modifiedForegroundColor": "#2959aa",
//"gitlens.decorations.renamedForegroundColor": "#166775",
//"gitlens.decorations.statusMergingOrRebasingConflictForegroundColor": "#ad0707",
//"gitlens.decorations.statusMergingOrRebasingForegroundColor": "#d8af1b",
//"gitlens.decorations.untrackedForegroundColor": "#166775",
//"gitlens.decorations.workspaceCurrentForegroundColor": "#35b15e",
//"gitlens.decorations.workspaceRepoMissingForegroundColor": "#949494",
//"gitlens.decorations.workspaceRepoOpenForegroundColor": "#35b15e",
//"gitlens.decorations.worktreeHasUncommittedChangesForegroundColor": "#895503",
//"gitlens.decorations.worktreeMissingForegroundColor": "#ad0707",
//"gitlens.graphChangesColumnAddedColor": "#2da44e",
//"gitlens.graphChangesColumnDeletedColor": "#cf222e",
//"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": "#04c814",
//"gitlens.graphMinimapMarkerHighlightsColor": "#f5cc00",
//"gitlens.graphMinimapMarkerLocalBranchesColor": "#3095e8",
//"gitlens.graphMinimapMarkerPullRequestsColor": "#ff8f18",
//"gitlens.graphMinimapMarkerRemoteBranchesColor": "#67ace4",
//"gitlens.graphMinimapMarkerStashesColor": "#e467e4",
//"gitlens.graphMinimapMarkerTagsColor": "#d2a379",
//"gitlens.graphMinimapMarkerUpstreamColor": "#8cd993",
//"gitlens.graphScrollMarkerHeadColor": "#04c814",
//"gitlens.graphScrollMarkerHighlightsColor": "#f5cc00",
//"gitlens.graphScrollMarkerLocalBranchesColor": "#3095e8",
//"gitlens.graphScrollMarkerPullRequestsColor": "#ff8f18",
//"gitlens.graphScrollMarkerRemoteBranchesColor": "#67ace4",
//"gitlens.graphScrollMarkerStashesColor": "#e467e4",
//"gitlens.graphScrollMarkerTagsColor": "#d2a379",
//"gitlens.graphScrollMarkerUpstreamColor": "#8cd993",
//"gitlens.launchpadIndicatorAttentionColor": "#cc9b15",
//"gitlens.launchpadIndicatorAttentionHoverColor": "#cc9b15",
//"gitlens.launchpadIndicatorBlockedColor": "#ad0707",
//"gitlens.launchpadIndicatorBlockedHoverColor": "#ad0707",
//"gitlens.launchpadIndicatorMergeableColor": "#42c954",
//"gitlens.launchpadIndicatorMergeableHoverColor": "#42c954",
//"gitlens.lineHighlightBackgroundColor": "#00bcf233",
//"gitlens.lineHighlightOverviewRulerColor": "#00bcf299",
//"gitlens.mergedPullRequestIconColor": "#8250df",
//"gitlens.openAutolinkedIssueIconColor": "#1a7f37",
//"gitlens.openPullRequestIconColor": "#1a7f37",
//"gitlens.trailingLineBackgroundColor": "#00000000",
//"gitlens.unpublishedChangesIconColor": "#35b15e",
//"gitlens.unpublishedCommitIconColor": "#35b15e",
//"gitlens.unpulledChangesIconColor": "#b15e35",
//"inlineChat.background": "#d6d8df",
//"inlineChat.border": "#c8c8c8",
//"inlineChat.foreground": "#363c4d",
//"inlineChat.shadow": "#ffffff00",
//"inlineChatDiff.inserted": "#2d9c9110",
//"inlineChatDiff.removed": "#e8686809",
//"inlineChatInput.background": "#e6e7ed",
//"inlineChatInput.border": "#c8c8c8",
//"inlineChatInput.focusBorder": "#70728033",
//"inlineChatInput.placeholderForeground": "#4a5272",
//"inlineEdit.border": "#cacaca",
//"inlineEdit.indicator.background": "#2959aadd",
//"inlineEdit.indicator.border": "#ffffff66",
//"inlineEdit.indicator.foreground": "#ffffff",
//"inlineEdit.modifiedBackground": "#2d9c910d",
//"inlineEdit.modifiedChangedLineBackground": "#00000000",
//"inlineEdit.modifiedChangedTextBackground": "#2d9c9120",
//"inlineEdit.originalBackground": "#e8686807",
//"inlineEdit.originalChangedLineBackground": "#00000000",
//"inlineEdit.originalChangedTextBackground": "#e8686812",
//"inputOption.activeBorder": "#007acc",
//"inputOption.activeForeground": "#000000",
//"inputOption.hoverBackground": "#b8b8b850",
//"interactive.activeCodeBorder": "#c1c2c7",
//"interactive.inactiveCodeBorder": "#e6e7ed",
//"keybindingLabel.background": "#dddddd66",
//"keybindingLabel.border": "#cccccc66",
//"keybindingLabel.bottomBorder": "#bbbbbb66",
//"keybindingLabel.foreground": "#555555",
//"keybindingTable.headerBackground": "#363c4d0a",
//"keybindingTable.rowsBackground": "#363c4d0a",
//"list.dropBetweenBackground": "#707280",
//"list.filterMatchBackground": "#2d9c9120",
//"list.focusHighlightForeground": "#2959aa",
//"list.focusOutline": "#70728033",
//"listFilterWidget.shadow": "#ffffff00",
//"markdown.extension.editor.codeSpan.background": "#00000000",
//"markdown.extension.editor.codeSpan.border": "#acb0bf40",
//"markdown.extension.editor.formattingMark.foreground": "#e6e7ed",
//"markdown.extension.editor.trailingSpace.background": "#cacbcf",
//"merge.commonContentBackground": "#60606029",
//"merge.commonHeaderBackground": "#60606066",
//"mergeEditor.changeBase.background": "#ffcccc",
//"mergeEditor.changeBase.word.background": "#ffa3a3",
//"mergeEditor.conflict.input1.background": "#007a7544",
//"mergeEditor.conflict.input2.background": "#2959aa44",
//"mergeEditor.conflictingLines.background": "#ffea0047",
//"minimap.findMatchHighlight": "#d18616",
//"minimap.foregroundOpacity": "#000000",
//"minimap.infoHighlight": "#0da0ba",
//"minimap.selectionHighlight": "#add6ff",
//"minimap.selectionOccurrenceHighlight": "#c9c9c9",
//"minimap.warningHighlight": "#8f5e15",
//"minimapGutter.addedBackground": "#71b6bd",
//"minimapGutter.deletedBackground": "#a8626a",
//"minimapGutter.modifiedBackground": "#637dbf",
//"minimapSlider.activeBackground": "#90929619",
//"minimapSlider.background": "#90929613",
//"minimapSlider.hoverBackground": "#90929610",
//"multiDiffEditor.background": "#e6e7ed",
//"notebook.cellInsertionIndicator": "#70728033",
//"notebook.cellToolbarSeparator": "#80808059",
//"notebook.focusedEditorBorder": "#70728033",
//"notebook.inactiveFocusedCellBorder": "#c1c2c7",
//"notebook.selectedCellBackground": "#e6e7ed",
//"notebook.selectedCellBorder": "#c1c2c7",
//"notebook.symbolHighlightBackground": "#fdff0033",
//"notebookEditorOverviewRuler.runningCellForeground": "#2959aa",
//"notebookScrollbarSlider.activeBackground": "#90929632",
//"notebookScrollbarSlider.background": "#90929625",
//"notebookScrollbarSlider.hoverBackground": "#90929620",
//"notebookStatusErrorIcon.foreground": "#5a607d",
//"notebookStatusRunningIcon.foreground": "#363c4d",
//"notebookStatusSuccessIcon.foreground": "#2959aa",
//"notifications.border": "#dcdee3",
//"notifications.foreground": "#363c4d",
//"panel.dropBorder": "#363c4d",
//"panelSection.border": "#c1c2c7",
//"panelSection.dropBackground": "#c1c2c7",
//"panelSectionHeader.background": "#80808033",
//"panelStickyScroll.background": "#d6d8df",
//"panelStickyScroll.shadow": "#00000033",
//"peekViewEditorGutter.background": "#dcdee3",
//"peekViewEditorStickyScroll.background": "#dcdee3",
//"ports.iconRunningProcessForeground": "#2959aa",
//"problemsErrorIcon.foreground": "#bd4040",
//"problemsInfoIcon.foreground": "#0da0ba",
//"problemsWarningIcon.foreground": "#8f5e15",
//"profileBadge.background": "#c4c4c4",
//"profileBadge.foreground": "#333333",
//"profiles.sashBorder": "#c1c2c7",
//"quickInput.background": "#d6d8df",
//"quickInput.foreground": "#363c4d",
//"quickInputList.focusBackground": "#e6e7ed",
//"quickInputList.focusForeground": "#363c4d",
//"quickInputTitle.background": "#0000000f",
//"radio.activeBackground": "#2959aa44",
//"radio.activeBorder": "#007acc",
//"radio.activeForeground": "#000000",
//"radio.inactiveBorder": "#00000033",
//"radio.inactiveHoverBackground": "#b8b8b850",
//"scmGraph.foreground1": "#ffb000",
//"scmGraph.foreground2": "#dc267f",
//"scmGraph.foreground3": "#994f00",
//"scmGraph.foreground4": "#40b0a6",
//"scmGraph.foreground5": "#b66dff",
//"scmGraph.historyItemBaseRefColor": "#ea5c00",
//"scmGraph.historyItemHoverAdditionsForeground": "#587c0c",
//"scmGraph.historyItemHoverDefaultLabelBackground": "#979db833",
//"scmGraph.historyItemHoverDefaultLabelForeground": "#363c4d",
//"scmGraph.historyItemHoverDeletionsForeground": "#ad0707",
//"scmGraph.historyItemHoverLabelForeground": "#ffffff",
//"scmGraph.historyItemRefColor": "#2959aa",
//"scmGraph.historyItemRemoteRefColor": "#5a3e8e",
//"search.resultsInfoForeground": "#363c4d",
//"searchEditor.findMatchBackground": "#2d9c9115",
//"searchEditor.textInputBorder": "#c1c2c7",
//"settings.checkboxBackground": "#e6e7ed",
//"settings.checkboxBorder": "#c1c2c7",
//"settings.checkboxForeground": "#363c4d",
//"settings.dropdownBackground": "#e6e7ed",
//"settings.dropdownBorder": "#c1c2c7",
//"settings.dropdownForeground": "#363c4d",
//"settings.dropdownListBorder": "#c8c8c8",
//"settings.focusedRowBackground": "#e1e2e899",
//"settings.focusedRowBorder": "#70728033",
//"settings.headerBorder": "#c1c2c7",
//"settings.modifiedItemIndicator": "#66afe0",
//"settings.numberInputBackground": "#e6e7ed",
//"settings.numberInputBorder": "#c1c2c7",
//"settings.numberInputForeground": "#363c4d",
//"settings.rowHoverBackground": "#e1e2e84d",
//"settings.sashBorder": "#c1c2c7",
//"settings.settingsHeaderHoverForeground": "#2959aab3",
//"settings.textInputBackground": "#e6e7ed",
//"settings.textInputBorder": "#c1c2c7",
//"settings.textInputForeground": "#363c4d",
//"sideBarActivityBarTop.border": "#c1c2c7",
//"sideBarStickyScroll.background": "#d6d8df",
//"sideBarStickyScroll.shadow": "#00000033",
//"sideBarTitle.background": "#d6d8df",
//"sideBySideEditor.horizontalBorder": "#c1c2c7",
//"sideBySideEditor.verticalBorder": "#c1c2c7",
//"simpleFindWidget.sashBorder": "#c8c8c8",
//"statusBar.debuggingBorder": "#c1c2c7",
//"statusBar.focusBorder": "#363c4d",
//"statusBar.noFolderBorder": "#c1c2c7",
//"statusBar.noFolderForeground": "#363c4d",
//"statusBarItem.compactHoverBackground": "#ffffff33",
//"statusBarItem.errorBackground": "#363a4b",
//"statusBarItem.errorForeground": "#ffffff",
//"statusBarItem.errorHoverBackground": "#e6e7ed",
//"statusBarItem.errorHoverForeground": "#363c4d",
//"statusBarItem.focusBorder": "#363c4d",
//"statusBarItem.hoverForeground": "#363c4d",
//"statusBarItem.offlineBackground": "#6c1717",
//"statusBarItem.offlineForeground": "#ffffff",
//"statusBarItem.offlineHoverBackground": "#e6e7ed",
//"statusBarItem.offlineHoverForeground": "#363c4d",
//"statusBarItem.prominentForeground": "#363c4d",
//"statusBarItem.prominentHoverForeground": "#363c4d",
//"statusBarItem.remoteBackground": "#2959aa",
//"statusBarItem.remoteForeground": "#ffffff",
//"statusBarItem.remoteHoverBackground": "#e6e7ed",
//"statusBarItem.remoteHoverForeground": "#363c4d",
//"statusBarItem.warningBackground": "#56390d",
//"statusBarItem.warningForeground": "#ffffff",
//"statusBarItem.warningHoverBackground": "#e6e7ed",
//"statusBarItem.warningHoverForeground": "#363c4d",
//"symbolIcon.arrayForeground": "#363c4d",
//"symbolIcon.booleanForeground": "#363c4d",
//"symbolIcon.classForeground": "#d67e00",
//"symbolIcon.colorForeground": "#363c4d",
//"symbolIcon.constantForeground": "#363c4d",
//"symbolIcon.constructorForeground": "#652d90",
//"symbolIcon.enumeratorForeground": "#d67e00",
//"symbolIcon.enumeratorMemberForeground": "#007acc",
//"symbolIcon.eventForeground": "#d67e00",
//"symbolIcon.fieldForeground": "#007acc",
//"symbolIcon.fileForeground": "#363c4d",
//"symbolIcon.folderForeground": "#363c4d",
//"symbolIcon.functionForeground": "#652d90",
//"symbolIcon.interfaceForeground": "#007acc",
//"symbolIcon.keyForeground": "#363c4d",
//"symbolIcon.keywordForeground": "#363c4d",
//"symbolIcon.methodForeground": "#652d90",
//"symbolIcon.moduleForeground": "#363c4d",
//"symbolIcon.namespaceForeground": "#363c4d",
//"symbolIcon.nullForeground": "#363c4d",
//"symbolIcon.numberForeground": "#363c4d",
//"symbolIcon.objectForeground": "#363c4d",
//"symbolIcon.operatorForeground": "#363c4d",
//"symbolIcon.packageForeground": "#363c4d",
//"symbolIcon.propertyForeground": "#363c4d",
//"symbolIcon.referenceForeground": "#363c4d",
//"symbolIcon.snippetForeground": "#363c4d",
//"symbolIcon.stringForeground": "#363c4d",
//"symbolIcon.structForeground": "#363c4d",
//"symbolIcon.textForeground": "#363c4d",
//"symbolIcon.typeParameterForeground": "#363c4d",
//"symbolIcon.unitForeground": "#363c4d",
//"symbolIcon.variableForeground": "#007acc",
//"tab.dragAndDropBorder": "#363c4d",
//"tab.selectedForeground": "#363c4d",
//"tab.unfocusedActiveBackground": "#dadce3",
//"tab.unfocusedActiveModifiedBorder": "#e6e7edb3",
//"tab.unfocusedHoverBackground": "#dadce3b3",
//"tab.unfocusedInactiveBackground": "#d6d8df",
//"tab.unfocusedInactiveModifiedBorder": "#e6e7ed80",
//"terminal.border": "#c1c2c7",
//"terminal.dropBackground": "#c1c2c7",
//"terminal.findMatchBackground": "#2d9c9130",
//"terminal.findMatchHighlightBackground": "#2d9c9120",
//"terminal.hoverHighlightBackground": "#add6ff13",
//"terminal.inactiveSelectionBackground": "#acb0bf20",
//"terminal.initialHintForeground": "#00000077",
//"terminal.tab.activeBorder": "#2959aa",
//"terminalCommandDecoration.defaultBackground": "#00000040",
//"terminalCommandDecoration.errorBackground": "#e51400",
//"terminalCommandDecoration.successBackground": "#2090d3",
//"terminalCommandGuide.foreground": "#e6e7ed",
//"terminalOverviewRuler.border": "#c1c2c7",
//"terminalOverviewRuler.cursorForeground": "#a0a0a0cc",
//"terminalOverviewRuler.findMatchForeground": "#363c4d44",
//"terminalStickyScrollHover.background": "#f0f0f0",
//"testing.coverCountBadgeBackground": "#979db833",
//"testing.coverCountBadgeForeground": "#363c4d",
//"testing.coveredBackground": "#2d9c9120",
//"testing.coveredBorder": "#2d9c9118",
//"testing.coveredGutterBackground": "#2d9c9113",
//"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": "#e51400",
//"testing.message.error.badgeBorder": "#e51400",
//"testing.message.error.badgeForeground": "#ffffff",
//"testing.message.info.decorationForeground": "#343b5980",
//"testing.messagePeekBorder": "#0da0ba",
//"testing.messagePeekHeaderBackground": "#0da0ba1a",
//"testing.peekBorder": "#bd4040",
//"testing.peekHeaderBackground": "#bd40401a",
//"testing.runAction": "#73c991",
//"testing.uncoveredBackground": "#e8686812",
//"testing.uncoveredBorder": "#e868680e",
//"testing.uncoveredBranchBackground": "#e6d4da",
//"testing.uncoveredGutterBackground": "#e868681b",
//"textBlockQuote.border": "#007acc80",
//"textPreformat.background": "#0000001a",
//"tree.inactiveIndentGuidesStroke": "#c1c2c766",
//"tree.tableColumnsBorder": "#61616120",
//"tree.tableOddRowsBackground": "#363c4d0a",
//"walkthrough.stepTitle.foreground": "#000000",
//"welcomePage.progress.background": "#e6e7ed",
//"welcomePage.progress.foreground": "#2959aa",
//"welcomePage.tileBackground": "#d6d8df",
//"welcomePage.tileBorder": "#0000001a",
//"welcomePage.tileHoverBackground": "#bdc1cc",
//"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,
//"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,
//"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,
//"list.activeSelectionIconForeground": null,
//"list.filterMatchBorder": null,
//"list.focusAndSelectionOutline": null,
//"list.inactiveFocusBackground": null,
//"list.inactiveFocusOutline": null,
//"list.inactiveSelectionIconForeground": null,
//"menu.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,
//"panelTitle.border": null,
//"peekViewEditor.matchHighlightBorder": null,
//"quickInput.list.focusBackground": null,
//"quickInputList.focusIconForeground": null,
//"radio.inactiveBackground": null,
//"radio.inactiveForeground": null,
//"searchEditor.findMatchBorder": null,
//"sideBarStickyScroll.border": null,
//"sideBarTitle.border": null,
//"tab.activeBorderTop": null,
//"tab.hoverBorder": null,
//"tab.selectedBorderTop": null,
//"tab.unfocusedActiveBorderTop": null,
//"tab.unfocusedHoverBorder": 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,
//"toolbar.hoverOutline": null,
//"welcomePage.background": null,
//"widget.border": null
},
"tokenColors": [
{
"scope": [
"comment",
"meta.var.expr storage.type",
"keyword.control.flow",
"keyword.control.return",
"meta.directive.vue punctuation.separator.key-value.html",
"meta.directive.vue entity.other.attribute-name.html",
"tag.decorator.js entity.name.tag.js",
"tag.decorator.js punctuation.definition.tag.js",
"storage.modifier",
"string.quoted.docstring.multi",
"string.quoted.docstring.multi.python punctuation.definition.string.begin",
"string.quoted.docstring.multi.python punctuation.definition.string.end",
"string.quoted.docstring.multi.python constant.character.escape"
],
"settings": {
"fontStyle": "italic"
}
},
{
"scope": [
"keyword.control.flow.block-scalar.literal",
"keyword.control.flow.python"
],
"settings": {
"fontStyle": ""
}
},
{
"scope": [
"comment",
"comment.block.documentation",
"punctuation.definition.comment",
"comment.block.documentation punctuation",
"string.quoted.docstring.multi",
"string.quoted.docstring.multi.python punctuation.definition.string.begin",
"string.quoted.docstring.multi.python punctuation.definition.string.end",
"string.quoted.docstring.multi.python constant.character.escape"
],
"settings": {
"foreground": "#888B94"
}
},
{
"scope": [
"keyword.operator.assignment.jsdoc",
"comment.block.documentation variable",
"comment.block.documentation storage",
"comment.block.documentation keyword",
"comment.block.documentation support",
"comment.block.documentation markup",
"comment.block.documentation markup.inline.raw.string.markdown",
"meta.other.type.phpdoc.php keyword.other.type.php",
"meta.other.type.phpdoc.php support.other.namespace.php",
"meta.other.type.phpdoc.php punctuation.separator.inheritance.php",
"meta.other.type.phpdoc.php support.class",
"keyword.other.phpdoc.php",
"log.date"
],
"settings": {
"foreground": "#6C6E75"
}
},
{
"scope": [
"meta.other.type.phpdoc.php support.class",
"comment.block.documentation storage.type",
"comment.block.documentation punctuation.definition.block.tag",
"comment.block.documentation entity.name.type.instance"
],
"settings": {
"foreground": "#606269"
}
},
{
"scope": [
"variable.other.constant",
"punctuation.definition.constant",
"constant.language",
"constant.numeric",
"support.constant",
"constant.other.caps"
],