-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtokyonightdark.jsonc
1976 lines (1976 loc) · 66.8 KB
/
tokyonightdark.jsonc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"$schema": "vscode://schemas/color-theme",
"type": "dark",
"colors": {
"activityBar.background": "#16161e",
"activityBar.border": "#16161e",
"activityBar.foreground": "#787c99",
"activityBar.inactiveForeground": "#3b3e52",
"activityBarBadge.background": "#3d59a1",
"activityBarBadge.foreground": "#ffffff",
"activityBarTop.foreground": "#787c99",
"activityBarTop.inactiveForeground": "#3b3e52",
"badge.background": "#7e83b230",
"badge.foreground": "#acb0d0",
"breadcrumb.activeSelectionForeground": "#a9b1d6",
"breadcrumb.background": "#16161e",
"breadcrumb.focusForeground": "#a9b1d6",
"breadcrumb.foreground": "#515670",
"breadcrumbPicker.background": "#16161e",
"button.background": "#3d59a1dd",
"button.foreground": "#ffffff",
"button.hoverBackground": "#3d59a1aa",
"button.secondaryBackground": "#3b3e52",
"charts.blue": "#7aa2f7",
"charts.foreground": "#9aa5ce",
"charts.green": "#41a6b5",
"charts.lines": "#16161e",
"charts.orange": "#ff9e64",
"charts.purple": "#9d7cd8",
"charts.red": "#f7768e",
"charts.yellow": "#e0af68",
"debugConsole.errorForeground": "#bb616b",
"debugConsole.infoForeground": "#787c99",
"debugConsole.sourceForeground": "#787c99",
"debugConsole.warningForeground": "#c49a5a",
"debugConsoleInputIcon.foreground": "#73daca",
"debugExceptionWidget.background": "#101014",
"debugExceptionWidget.border": "#963c47",
"debugIcon.breakpointDisabledForeground": "#414761",
"debugIcon.breakpointForeground": "#db4b4b",
"debugIcon.breakpointUnverifiedForeground": "#c24242",
"debugTokenExpression.boolean": "#ff9e64",
"debugTokenExpression.error": "#bb616b",
"debugTokenExpression.name": "#7dcfff",
"debugTokenExpression.number": "#ff9e64",
"debugTokenExpression.string": "#9ece6a",
"debugTokenExpression.value": "#9aa5ce",
"debugToolBar.background": "#101014",
"debugView.stateLabelBackground": "#14141b",
"debugView.stateLabelForeground": "#787c99",
"debugView.valueChangedHighlight": "#3d59a1aa",
"descriptionForeground": "#515670",
"diffEditor.diagonalFill": "#292e42",
"diffEditor.insertedLineBackground": "#41a6b520",
"diffEditor.insertedTextBackground": "#41a6b520",
"diffEditor.removedLineBackground": "#db4b4b22",
"diffEditor.removedTextBackground": "#db4b4b22",
"diffEditor.unchangedCodeBackground": "#282a3b66",
"diffEditorGutter.insertedLineBackground": "#41a6b525",
"diffEditorGutter.removedLineBackground": "#db4b4b22",
"diffEditorOverview.insertedForeground": "#41a6b525",
"diffEditorOverview.removedForeground": "#db4b4b22",
"dropdown.background": "#14141b",
"dropdown.foreground": "#787c99",
"dropdown.listBackground": "#14141b",
"editor.background": "#1a1b26",
"editor.findMatchBackground": "#3d59a166",
"editor.findMatchBorder": "#e0af68",
"editor.findMatchHighlightBackground": "#3d59a166",
"editor.findRangeHighlightBackground": "#515c7e33",
"editor.focusedStackFrameHighlightBackground": "#73daca20",
"editor.foldBackground": "#1111174a",
"editor.foreground": "#a9b1d6",
"editor.inactiveSelectionBackground": "#515c7e25",
"editor.lineHighlightBackground": "#1e202e",
"editor.rangeHighlightBackground": "#515c7e20",
"editor.selectionBackground": "#515c7e4d",
"editor.selectionHighlightBackground": "#515c7e44",
"editor.stackFrameHighlightBackground": "#e2bd3a20",
"editor.wordHighlightBackground": "#515c7e44",
"editor.wordHighlightStrongBackground": "#515c7e55",
"editorBracketHighlight.foreground1": "#698cd6",
"editorBracketHighlight.foreground2": "#68b3de",
"editorBracketHighlight.foreground3": "#9a7ecc",
"editorBracketHighlight.foreground4": "#25aac2",
"editorBracketHighlight.foreground5": "#80a856",
"editorBracketHighlight.foreground6": "#c49a5a",
"editorBracketHighlight.unexpectedBracket.foreground": "#db4b4b",
"editorBracketMatch.background": "#16161e",
"editorBracketMatch.border": "#42465d",
"editorBracketPairGuide.activeBackground1": "#698cd6",
"editorBracketPairGuide.activeBackground2": "#68b3de",
"editorBracketPairGuide.activeBackground3": "#9a7ecc",
"editorBracketPairGuide.activeBackground4": "#25aac2",
"editorBracketPairGuide.activeBackground5": "#80a856",
"editorBracketPairGuide.activeBackground6": "#c49a5a",
"editorCodeLens.foreground": "#51597d",
"editorCursor.foreground": "#c0caf5",
"editorError.foreground": "#db4b4b",
"editorGhostText.foreground": "#646e9c",
"editorGroup.border": "#101014",
"editorGroup.dropBackground": "#1e202e",
"editorGroupHeader.border": "#101014",
"editorGroupHeader.noTabsBackground": "#16161e",
"editorGroupHeader.tabsBackground": "#16161e",
"editorGroupHeader.tabsBorder": "#101014",
"editorGutter.addedBackground": "#164846",
"editorGutter.deletedBackground": "#823c41",
"editorGutter.modifiedBackground": "#394b70",
"editorHint.foreground": "#0da0ba",
"editorHoverWidget.background": "#16161e",
"editorHoverWidget.border": "#101014",
"editorIndentGuide.activeBackground1": "#363b54",
"editorIndentGuide.background1": "#232433",
"editorInfo.foreground": "#0da0ba",
"editorLightBulb.foreground": "#e0af68",
"editorLightBulbAutoFix.foreground": "#e0af68",
"editorLineNumber.activeForeground": "#737aa2",
"editorLineNumber.foreground": "#363b54",
"editorLink.activeForeground": "#acb0d0",
"editorMarkerNavigation.background": "#16161e",
"editorOverviewRuler.addedForeground": "#164846",
"editorOverviewRuler.border": "#101014",
"editorOverviewRuler.bracketMatchForeground": "#101014",
"editorOverviewRuler.deletedForeground": "#703438",
"editorOverviewRuler.errorForeground": "#db4b4b",
"editorOverviewRuler.findMatchForeground": "#a9b1d644",
"editorOverviewRuler.infoForeground": "#1abc9c",
"editorOverviewRuler.modifiedForeground": "#394b70",
"editorOverviewRuler.rangeHighlightForeground": "#a9b1d644",
"editorOverviewRuler.selectionHighlightForeground": "#a9b1d622",
"editorOverviewRuler.warningForeground": "#e0af68",
"editorOverviewRuler.wordHighlightForeground": "#bb9af755",
"editorOverviewRuler.wordHighlightStrongForeground": "#bb9af766",
"editorPane.background": "#16161e",
"editorRuler.foreground": "#101014",
"editorSuggestWidget.background": "#16161e",
"editorSuggestWidget.border": "#101014",
"editorSuggestWidget.highlightForeground": "#6183bb",
"editorSuggestWidget.selectedBackground": "#20222c",
"editorWarning.foreground": "#e0af68",
"editorWhitespace.foreground": "#363b54",
"editorWidget.background": "#16161e",
"editorWidget.foreground": "#787c99",
"editorWidget.resizeBorder": "#545c7e33",
"errorForeground": "#515670",
"extensionBadge.remoteBackground": "#3d59a1",
"extensionBadge.remoteForeground": "#ffffff",
"extensionButton.prominentBackground": "#3d59a1dd",
"extensionButton.prominentForeground": "#ffffff",
"extensionButton.prominentHoverBackground": "#3d59a1aa",
"focusBorder": "#545c7e33",
"foreground": "#787c99",
"gitDecoration.addedResourceForeground": "#449dab",
"gitDecoration.conflictingResourceForeground": "#e0af68cc",
"gitDecoration.deletedResourceForeground": "#914c54",
"gitDecoration.ignoredResourceForeground": "#515670",
"gitDecoration.modifiedResourceForeground": "#6183bb",
"gitDecoration.renamedResourceForeground": "#449dab",
"gitDecoration.stageDeletedResourceForeground": "#914c54",
"gitDecoration.stageModifiedResourceForeground": "#6183bb",
"gitDecoration.untrackedResourceForeground": "#449dab",
"gitlens.gutterBackgroundColor": "#16161e",
"gitlens.gutterForegroundColor": "#787c99",
"gitlens.gutterUncommittedForegroundColor": "#7aa2f7",
"gitlens.trailingLineForegroundColor": "#646e9c",
"icon.foreground": "#787c99",
"input.background": "#14141b",
"input.border": "#0f0f14",
"input.foreground": "#a9b1d6",
"input.placeholderForeground": "#787c998a",
"inputOption.activeBackground": "#3d59a144",
"inputOption.activeForeground": "#c0caf5",
"inputValidation.errorBackground": "#85353e",
"inputValidation.errorBorder": "#963c47",
"inputValidation.errorForeground": "#bbc2e0",
"inputValidation.infoBackground": "#3d59a15c",
"inputValidation.infoBorder": "#3d59a1",
"inputValidation.infoForeground": "#bbc2e0",
"inputValidation.warningBackground": "#c2985b",
"inputValidation.warningBorder": "#e0af68",
"inputValidation.warningForeground": "#000000",
"list.activeSelectionBackground": "#202330",
"list.activeSelectionForeground": "#a9b1d6",
"list.deemphasizedForeground": "#787c99",
"list.dropBackground": "#1e202e",
"list.errorForeground": "#bb616b",
"list.focusBackground": "#1c1d29",
"list.focusForeground": "#a9b1d6",
"list.highlightForeground": "#668ac4",
"list.hoverBackground": "#13131a",
"list.hoverForeground": "#a9b1d6",
"list.inactiveSelectionBackground": "#1c1d29",
"list.inactiveSelectionForeground": "#a9b1d6",
"list.invalidItemForeground": "#c97018",
"list.warningForeground": "#c49a5a",
"listFilterWidget.background": "#101014",
"listFilterWidget.noMatchesOutline": "#a6333f",
"listFilterWidget.outline": "#3d59a1",
"menu.background": "#16161e",
"menu.border": "#101014",
"menu.foreground": "#787c99",
"menu.selectionBackground": "#1e202e",
"menu.selectionForeground": "#a9b1d6",
"menu.separatorBackground": "#101014",
"menubar.selectionBackground": "#1e202e",
"menubar.selectionBorder": "#1b1e2e",
"menubar.selectionForeground": "#a9b1d6",
"merge.currentContentBackground": "#007a7544",
"merge.currentHeaderBackground": "#41a6b525",
"merge.incomingContentBackground": "#3d59a144",
"merge.incomingHeaderBackground": "#3d59a1aa",
"mergeEditor.change.background": "#41a6b525",
"mergeEditor.change.word.background": "#41a6b540",
"mergeEditor.conflict.handled.minimapOverViewRuler": "#449dab",
"mergeEditor.conflict.handledFocused.border": "#41a6b565",
"mergeEditor.conflict.handledUnfocused.border": "#41a6b525",
"mergeEditor.conflict.unhandled.minimapOverViewRuler": "#e0af68",
"mergeEditor.conflict.unhandledFocused.border": "#e0af68b0",
"mergeEditor.conflict.unhandledUnfocused.border": "#e0af6888",
"minimapGutter.addedBackground": "#1c5957",
"minimapGutter.deletedBackground": "#944449",
"minimapGutter.modifiedBackground": "#425882",
"multiDiffEditor.border": "#1a1b26",
"multiDiffEditor.headerBackground": "#1a1b26",
"notebook.cellBorderColor": "#101014",
"notebook.cellEditorBackground": "#16161e",
"notebook.cellStatusBarItemHoverBackground": "#1c1d29",
"notebook.editorBackground": "#1a1b26",
"notebook.focusedCellBorder": "#29355a",
"notificationCenterHeader.background": "#101014",
"notificationLink.foreground": "#6183bb",
"notifications.background": "#101014",
"notificationsErrorIcon.foreground": "#bb616b",
"notificationsInfoIcon.foreground": "#0da0ba",
"notificationsWarningIcon.foreground": "#bba461",
"panel.background": "#16161e",
"panel.border": "#101014",
"panelInput.border": "#16161e",
"panelTitle.activeBorder": "#16161e",
"panelTitle.activeForeground": "#787c99",
"panelTitle.inactiveForeground": "#42465d",
"peekView.border": "#101014",
"peekViewEditor.background": "#16161e",
"peekViewEditor.matchHighlightBackground": "#3d59a166",
"peekViewResult.background": "#101014",
"peekViewResult.fileForeground": "#787c99",
"peekViewResult.lineForeground": "#a9b1d6",
"peekViewResult.matchHighlightBackground": "#3d59a166",
"peekViewResult.selectionBackground": "#3d59a133",
"peekViewResult.selectionForeground": "#a9b1d6",
"peekViewTitle.background": "#101014",
"peekViewTitleDescription.foreground": "#787c99",
"peekViewTitleLabel.foreground": "#a9b1d6",
"pickerGroup.border": "#101014",
"pickerGroup.foreground": "#a9b1d6",
"progressBar.background": "#3d59a1",
"sash.hoverBorder": "#29355a",
"scrollbar.shadow": "#00000033",
"scrollbarSlider.activeBackground": "#868bc422",
"scrollbarSlider.background": "#868bc415",
"scrollbarSlider.hoverBackground": "#868bc410",
"selection.background": "#515c7e40",
"settings.headerForeground": "#6183bb",
"sideBar.background": "#16161e",
"sideBar.border": "#101014",
"sideBar.dropBackground": "#1e202e",
"sideBar.foreground": "#787c99",
"sideBarSectionHeader.background": "#16161e",
"sideBarSectionHeader.border": "#101014",
"sideBarSectionHeader.foreground": "#a9b1d6",
"sideBarTitle.foreground": "#787c99",
"statusBar.background": "#16161e",
"statusBar.border": "#101014",
"statusBar.debuggingBackground": "#16161e",
"statusBar.debuggingForeground": "#787c99",
"statusBar.foreground": "#787c99",
"statusBar.noFolderBackground": "#16161e",
"statusBarItem.activeBackground": "#101014",
"statusBarItem.hoverBackground": "#20222c",
"statusBarItem.prominentBackground": "#101014",
"statusBarItem.prominentHoverBackground": "#20222c",
"tab.activeBackground": "#16161e",
"tab.activeBorder": "#3d59a1",
"tab.activeForeground": "#a9b1d6",
"tab.activeModifiedBorder": "#1a1b26",
"tab.border": "#101014",
"tab.hoverForeground": "#a9b1d6",
"tab.inactiveBackground": "#16161e",
"tab.inactiveForeground": "#787c99",
"tab.inactiveModifiedBorder": "#1f202e",
"tab.lastPinnedBorder": "#222333",
"tab.unfocusedActiveBorder": "#1f202e",
"tab.unfocusedActiveForeground": "#a9b1d6",
"tab.unfocusedHoverForeground": "#a9b1d6",
"tab.unfocusedInactiveForeground": "#787c99",
"terminal.ansiBlack": "#363b54",
"terminal.ansiBlue": "#7aa2f7",
"terminal.ansiBrightBlack": "#363b54",
"terminal.ansiBrightBlue": "#7aa2f7",
"terminal.ansiBrightCyan": "#7dcfff",
"terminal.ansiBrightGreen": "#41a6b5",
"terminal.ansiBrightMagenta": "#bb9af7",
"terminal.ansiBrightRed": "#f7768e",
"terminal.ansiBrightWhite": "#acb0d0",
"terminal.ansiBrightYellow": "#e0af68",
"terminal.ansiCyan": "#7dcfff",
"terminal.ansiGreen": "#73daca",
"terminal.ansiMagenta": "#bb9af7",
"terminal.ansiRed": "#f7768e",
"terminal.ansiWhite": "#787c99",
"terminal.ansiYellow": "#e0af68",
"terminal.background": "#16161e",
"terminal.foreground": "#787c99",
"terminal.selectionBackground": "#515c7e4d",
"textBlockQuote.background": "#16161e",
"textCodeBlock.background": "#16161e",
"textLink.activeForeground": "#7dcfff",
"textLink.foreground": "#6183bb",
"textPreformat.foreground": "#9699a8",
"textSeparator.foreground": "#363b54",
"titleBar.activeBackground": "#16161e",
"titleBar.activeForeground": "#787c99",
"titleBar.border": "#101014",
"titleBar.inactiveBackground": "#16161e",
"titleBar.inactiveForeground": "#787c99",
"toolbar.activeBackground": "#202330",
"toolbar.hoverBackground": "#202330",
"tree.indentGuidesStroke": "#2b2b3b",
"walkThrough.embeddedEditorBackground": "#16161e",
"widget.shadow": "#ffffff00",
"window.activeBorder": "#0d0f17",
"window.inactiveBorder": "#0d0f17",
//"actionBar.toggledBackground": "#3d59a144",
//"activityBar.activeBorder": "#787c99",
//"activityBar.dropBorder": "#787c99",
//"activityBarTop.activeBorder": "#787c99",
//"activityBarTop.dropBorder": "#787c99",
//"activityErrorBadge.background": "#f14c4c",
//"activityErrorBadge.foreground": "#000000",
//"activityWarningBadge.background": "#cca700",
//"activityWarningBadge.foreground": "#000000",
//"banner.background": "#202330",
//"banner.foreground": "#a9b1d6",
//"banner.iconForeground": "#0da0ba",
//"button.secondaryForeground": "#ffffff",
//"button.secondaryHoverBackground": "#474a62",
//"button.separator": "#ffffff66",
//"chart.axis": "#bfbfbf66",
//"chart.guide": "#bfbfbf33",
//"chart.line": "#236b8e",
//"chat.avatarBackground": "#1f1f1f",
//"chat.avatarForeground": "#787c99",
//"chat.editedFileForeground": "#e2c08d",
//"chat.requestBackground": "#1a1b269e",
//"chat.requestBorder": "#ffffff1a",
//"chat.slashCommandBackground": "#34414b8f",
//"chat.slashCommandForeground": "#40a6ff",
//"checkbox.background": "#14141b",
//"checkbox.border": "#14141b",
//"checkbox.foreground": "#787c99",
//"checkbox.selectBackground": "#16161e",
//"checkbox.selectBorder": "#787c99",
//"clangd.inactiveRegions.background": "#1212124c",
//"commandCenter.activeBackground": "#ffffff14",
//"commandCenter.activeBorder": "#787c994d",
//"commandCenter.activeForeground": "#a9b1d6",
//"commandCenter.background": "#ffffff0d",
//"commandCenter.border": "#787c9933",
//"commandCenter.debuggingBackground": "#16161e42",
//"commandCenter.foreground": "#787c99",
//"commandCenter.inactiveBorder": "#787c9940",
//"commandCenter.inactiveForeground": "#787c99",
//"commentsView.resolvedIcon": "#cccccc80",
//"commentsView.unresolvedIcon": "#545c7e33",
//"debugIcon.breakpointCurrentStackframeForeground": "#ffcc00",
//"debugIcon.breakpointStackframeForeground": "#89d185",
//"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.type": "#4a90e2",
//"debugView.exceptionLabelBackground": "#6c2022",
//"debugView.exceptionLabelForeground": "#787c99",
//"diffEditor.move.border": "#8b8b8b9c",
//"diffEditor.moveActive.border": "#ffa500",
//"diffEditor.unchangedRegionBackground": "#16161e",
//"diffEditor.unchangedRegionForeground": "#787c99",
//"diffEditor.unchangedRegionShadow": "#000000",
//"disabledForeground": "#cccccc80",
//"dropdown.border": "#14141b",
//"editor.compositionBorder": "#ffffff",
//"editor.foldPlaceholderForeground": "#808080",
//"editor.hoverHighlightBackground": "#264f7840",
//"editor.inlineValuesBackground": "#ffc80033",
//"editor.inlineValuesForeground": "#ffffff80",
//"editor.lineHighlightBorder": "#282828",
//"editor.linkedEditingBackground": "#ff00004d",
//"editor.placeholder.foreground": "#646e9c",
//"editor.snippetFinalTabstopHighlightBorder": "#525252",
//"editor.snippetTabstopHighlightBackground": "#7c7c7c4d",
//"editor.symbolHighlightBackground": "#3d59a166",
//"editor.wordHighlightTextBackground": "#515c7e44",
//"editorActionList.background": "#16161e",
//"editorActionList.focusBackground": "#202330",
//"editorActionList.focusForeground": "#a9b1d6",
//"editorActionList.foreground": "#787c99",
//"editorActiveLineNumber.foreground": "#c6c6c6",
//"editorBracketPairGuide.background1": "#00000000",
//"editorBracketPairGuide.background2": "#00000000",
//"editorBracketPairGuide.background3": "#00000000",
//"editorBracketPairGuide.background4": "#00000000",
//"editorBracketPairGuide.background5": "#00000000",
//"editorBracketPairGuide.background6": "#00000000",
//"editorCommentsWidget.rangeActiveBackground": "#545c7e05",
//"editorCommentsWidget.rangeBackground": "#545c7e05",
//"editorCommentsWidget.replyInputBackground": "#101014",
//"editorCommentsWidget.resolvedBorder": "#cccccc80",
//"editorCommentsWidget.unresolvedBorder": "#545c7e33",
//"editorGroup.dropIntoPromptBackground": "#16161e",
//"editorGroup.dropIntoPromptForeground": "#787c99",
//"editorGutter.background": "#1a1b26",
//"editorGutter.commentGlyphForeground": "#a9b1d6",
//"editorGutter.commentRangeForeground": "#1c1d29",
//"editorGutter.commentUnresolvedGlyphForeground": "#a9b1d6",
//"editorGutter.foldingControlForeground": "#787c99",
//"editorHoverWidget.foreground": "#787c99",
//"editorHoverWidget.highlightForeground": "#668ac4",
//"editorHoverWidget.statusBarBackground": "#1a1a24",
//"editorIndentGuide.activeBackground": "#363b54",
//"editorIndentGuide.activeBackground2": "#00000000",
//"editorIndentGuide.activeBackground3": "#00000000",
//"editorIndentGuide.activeBackground4": "#00000000",
//"editorIndentGuide.activeBackground5": "#00000000",
//"editorIndentGuide.activeBackground6": "#00000000",
//"editorIndentGuide.background": "#363b54",
//"editorIndentGuide.background2": "#00000000",
//"editorIndentGuide.background3": "#00000000",
//"editorIndentGuide.background4": "#00000000",
//"editorIndentGuide.background5": "#00000000",
//"editorIndentGuide.background6": "#00000000",
//"editorInlayHint.background": "#7e83b205",
//"editorInlayHint.foreground": "#969696",
//"editorInlayHint.parameterBackground": "#7e83b205",
//"editorInlayHint.parameterForeground": "#969696",
//"editorInlayHint.typeBackground": "#7e83b205",
//"editorInlayHint.typeForeground": "#969696",
//"editorLightBulbAi.foreground": "#e0af68",
//"editorMarkerNavigationError.background": "#db4b4b",
//"editorMarkerNavigationError.headerBackground": "#db4b4b1a",
//"editorMarkerNavigationInfo.background": "#0da0ba",
//"editorMarkerNavigationInfo.headerBackground": "#0da0ba1a",
//"editorMarkerNavigationWarning.background": "#e0af68",
//"editorMarkerNavigationWarning.headerBackground": "#e0af681a",
//"editorMultiCursor.primary.foreground": "#c0caf5",
//"editorMultiCursor.secondary.foreground": "#c0caf5",
//"editorOverviewRuler.commentForeground": "#1c1d29",
//"editorOverviewRuler.commentUnresolvedForeground": "#1c1d29",
//"editorOverviewRuler.commonContentForeground": "#60606066",
//"editorOverviewRuler.currentContentForeground": "#41a6b525",
//"editorOverviewRuler.incomingContentForeground": "#3d59a1aa",
//"editorOverviewRuler.inlineChatInserted": "#41a6b513",
//"editorOverviewRuler.inlineChatRemoved": "#db4b4b14",
//"editorOverviewRuler.wordHighlightTextForeground": "#a9b1d622",
//"editorStickyScroll.background": "#1a1b26",
//"editorStickyScroll.shadow": "#00000033",
//"editorStickyScrollHover.background": "#2a2d2e",
//"editorSuggestWidget.focusHighlightForeground": "#668ac4",
//"editorSuggestWidget.foreground": "#a9b1d6",
//"editorSuggestWidget.selectedForeground": "#a9b1d6",
//"editorSuggestWidgetStatus.foreground": "#a9b1d680",
//"editorUnicodeHighlight.border": "#e0af68",
//"editorUnnecessaryCode.opacity": "#000000aa",
//"editorWatermark.foreground": "#a9b1d699",
//"editorWidget.border": "#454545",
//"extensionButton.background": "#3d59a1dd",
//"extensionButton.foreground": "#ffffff",
//"extensionButton.hoverBackground": "#3d59a1aa",
//"extensionButton.separator": "#ffffff66",
//"extensionIcon.preReleaseForeground": "#1d9271",
//"extensionIcon.sponsorForeground": "#d758b3",
//"extensionIcon.starForeground": "#ff8e00",
//"extensionIcon.verifiedForeground": "#6183bb",
//"git.blame.editorDecorationForeground": "#51597d",
//"gitDecoration.submoduleResourceForeground": "#8db9e2",
//"gitlens.closedAutolinkedIssueIconColor": "#a371f7",
//"gitlens.closedPullRequestIconColor": "#f85149",
//"gitlens.decorations.addedForegroundColor": "#449dab",
//"gitlens.decorations.branchAheadForegroundColor": "#35b15e",
//"gitlens.decorations.branchBehindForegroundColor": "#b15e35",
//"gitlens.decorations.branchDivergedForegroundColor": "#d8af1b",
//"gitlens.decorations.branchMissingUpstreamForegroundColor": "#c74e39",
//"gitlens.decorations.branchUnpublishedForegroundColor": "#787c99",
//"gitlens.decorations.branchUpToDateForegroundColor": "#787c99",
//"gitlens.decorations.copiedForegroundColor": "#449dab",
//"gitlens.decorations.deletedForegroundColor": "#914c54",
//"gitlens.decorations.ignoredForegroundColor": "#515670",
//"gitlens.decorations.modifiedForegroundColor": "#6183bb",
//"gitlens.decorations.renamedForegroundColor": "#449dab",
//"gitlens.decorations.statusMergingOrRebasingConflictForegroundColor": "#c74e39",
//"gitlens.decorations.statusMergingOrRebasingForegroundColor": "#d8af1b",
//"gitlens.decorations.untrackedForegroundColor": "#449dab",
//"gitlens.decorations.workspaceCurrentForegroundColor": "#35b15e",
//"gitlens.decorations.workspaceRepoMissingForegroundColor": "#909090",
//"gitlens.decorations.workspaceRepoOpenForegroundColor": "#35b15e",
//"gitlens.decorations.worktreeHasUncommittedChangesForegroundColor": "#e2c08d",
//"gitlens.decorations.worktreeMissingForegroundColor": "#c74e39",
//"gitlens.graphChangesColumnAddedColor": "#347d39",
//"gitlens.graphChangesColumnDeletedColor": "#c93c37",
//"gitlens.graphLane10Color": "#2ece9d",
//"gitlens.graphLane1Color": "#15a0bf",
//"gitlens.graphLane2Color": "#0669f7",
//"gitlens.graphLane3Color": "#8e00c2",
//"gitlens.graphLane4Color": "#c517b6",
//"gitlens.graphLane5Color": "#d90171",
//"gitlens.graphLane6Color": "#cd0101",
//"gitlens.graphLane7Color": "#f25d2e",
//"gitlens.graphLane8Color": "#f2ca33",
//"gitlens.graphLane9Color": "#7bd938",
//"gitlens.graphMinimapMarkerHeadColor": "#05e617",
//"gitlens.graphMinimapMarkerHighlightsColor": "#fbff0a",
//"gitlens.graphMinimapMarkerLocalBranchesColor": "#3087cf",
//"gitlens.graphMinimapMarkerPullRequestsColor": "#c76801",
//"gitlens.graphMinimapMarkerRemoteBranchesColor": "#2b5e88",
//"gitlens.graphMinimapMarkerStashesColor": "#b34db3",
//"gitlens.graphMinimapMarkerTagsColor": "#6b562e",
//"gitlens.graphMinimapMarkerUpstreamColor": "#09ae17",
//"gitlens.graphScrollMarkerHeadColor": "#05e617",
//"gitlens.graphScrollMarkerHighlightsColor": "#fbff0a",
//"gitlens.graphScrollMarkerLocalBranchesColor": "#3087cf",
//"gitlens.graphScrollMarkerPullRequestsColor": "#c76801",
//"gitlens.graphScrollMarkerRemoteBranchesColor": "#2b5e88",
//"gitlens.graphScrollMarkerStashesColor": "#b34db3",
//"gitlens.graphScrollMarkerTagsColor": "#6b562e",
//"gitlens.graphScrollMarkerUpstreamColor": "#09ae17",
//"gitlens.launchpadIndicatorAttentionColor": "#d8af1b",
//"gitlens.launchpadIndicatorAttentionHoverColor": "#d8af1b",
//"gitlens.launchpadIndicatorBlockedColor": "#c74e39",
//"gitlens.launchpadIndicatorBlockedHoverColor": "#c74e39",
//"gitlens.launchpadIndicatorMergeableColor": "#3fb950",
//"gitlens.launchpadIndicatorMergeableHoverColor": "#3fb950",
//"gitlens.lineHighlightBackgroundColor": "#00bcf233",
//"gitlens.lineHighlightOverviewRulerColor": "#00bcf299",
//"gitlens.mergedPullRequestIconColor": "#a371f7",
//"gitlens.openAutolinkedIssueIconColor": "#3fb950",
//"gitlens.openPullRequestIconColor": "#3fb950",
//"gitlens.trailingLineBackgroundColor": "#00000000",
//"gitlens.unpublishedChangesIconColor": "#35b15e",
//"gitlens.unpublishedCommitIconColor": "#35b15e",
//"gitlens.unpulledChangesIconColor": "#b15e35",
//"inlineChat.background": "#16161e",
//"inlineChat.border": "#454545",
//"inlineChat.foreground": "#787c99",
//"inlineChat.shadow": "#ffffff00",
//"inlineChatDiff.inserted": "#41a6b510",
//"inlineChatDiff.removed": "#db4b4b11",
//"inlineChatInput.background": "#14141b",
//"inlineChatInput.border": "#454545",
//"inlineChatInput.focusBorder": "#545c7e33",
//"inlineChatInput.placeholderForeground": "#787c998a",
//"inlineEdit.border": "#3c3c3c",
//"inlineEdit.indicator.background": "#3d59a1dd",
//"inlineEdit.indicator.border": "#ffffff66",
//"inlineEdit.indicator.foreground": "#ffffff",
//"inlineEdit.modifiedBackground": "#41a6b50d",
//"inlineEdit.modifiedChangedLineBackground": "#00000000",
//"inlineEdit.modifiedChangedTextBackground": "#41a6b520",
//"inlineEdit.originalBackground": "#db4b4b0e",
//"inlineEdit.originalChangedLineBackground": "#00000000",
//"inlineEdit.originalChangedTextBackground": "#db4b4b22",
//"inputOption.activeBorder": "#007acc",
//"inputOption.hoverBackground": "#5a5d5e80",
//"interactive.activeCodeBorder": "#101014",
//"interactive.inactiveCodeBorder": "#1c1d29",
//"keybindingLabel.background": "#8080802b",
//"keybindingLabel.border": "#33333399",
//"keybindingLabel.bottomBorder": "#44444499",
//"keybindingLabel.foreground": "#cccccc",
//"keybindingTable.headerBackground": "#787c990a",
//"keybindingTable.rowsBackground": "#787c990a",
//"list.dropBetweenBackground": "#787c99",
//"list.filterMatchBackground": "#3d59a166",
//"list.focusHighlightForeground": "#668ac4",
//"list.focusOutline": "#545c7e33",
//"listFilterWidget.shadow": "#ffffff00",
//"markdown.extension.editor.codeSpan.background": "#00000000",
//"markdown.extension.editor.codeSpan.border": "#515c7e4d",
//"markdown.extension.editor.formattingMark.foreground": "#363b54",
//"markdown.extension.editor.trailingSpace.background": "#292e42",
//"merge.commonContentBackground": "#60606029",
//"merge.commonHeaderBackground": "#60606066",
//"mergeEditor.changeBase.background": "#4b1818",
//"mergeEditor.changeBase.word.background": "#6f1313",
//"mergeEditor.conflict.input1.background": "#41a6b50f",
//"mergeEditor.conflict.input2.background": "#3d59a144",
//"mergeEditor.conflictingLines.background": "#ffea0047",
//"minimap.errorHighlight": "#ff1212b3",
//"minimap.findMatchHighlight": "#d18616",
//"minimap.foregroundOpacity": "#000000",
//"minimap.infoHighlight": "#0da0ba",
//"minimap.selectionHighlight": "#264f78",
//"minimap.selectionOccurrenceHighlight": "#676767",
//"minimap.warningHighlight": "#e0af68",
//"minimapSlider.activeBackground": "#868bc411",
//"minimapSlider.background": "#868bc40a",
//"minimapSlider.hoverBackground": "#868bc408",
//"multiDiffEditor.background": "#1a1b26",
//"notebook.cellInsertionIndicator": "#545c7e33",
//"notebook.cellToolbarSeparator": "#80808059",
//"notebook.focusedEditorBorder": "#545c7e33",
//"notebook.inactiveFocusedCellBorder": "#101014",
//"notebook.selectedCellBackground": "#1c1d29",
//"notebook.selectedCellBorder": "#101014",
//"notebook.symbolHighlightBackground": "#ffffff0b",
//"notebookEditorOverviewRuler.runningCellForeground": "#89d185",
//"notebookScrollbarSlider.activeBackground": "#868bc422",
//"notebookScrollbarSlider.background": "#868bc415",
//"notebookScrollbarSlider.hoverBackground": "#868bc410",
//"notebookStatusErrorIcon.foreground": "#515670",
//"notebookStatusRunningIcon.foreground": "#787c99",
//"notebookStatusSuccessIcon.foreground": "#89d185",
//"notifications.border": "#101014",
//"notifications.foreground": "#787c99",
//"panel.dropBorder": "#787c99",
//"panelSection.border": "#101014",
//"panelSection.dropBackground": "#1e202e",
//"panelSectionHeader.background": "#80808033",
//"panelStickyScroll.background": "#16161e",
//"panelStickyScroll.shadow": "#00000033",
//"peekViewEditorGutter.background": "#16161e",
//"peekViewEditorStickyScroll.background": "#16161e",
//"ports.iconRunningProcessForeground": "#3d59a1",
//"problemsErrorIcon.foreground": "#db4b4b",
//"problemsInfoIcon.foreground": "#0da0ba",
//"problemsWarningIcon.foreground": "#e0af68",
//"profileBadge.background": "#4d4d4d",
//"profileBadge.foreground": "#ffffff",
//"profiles.sashBorder": "#101014",
//"quickInput.background": "#16161e",
//"quickInput.foreground": "#787c99",
//"quickInputList.focusBackground": "#202330",
//"quickInputList.focusForeground": "#a9b1d6",
//"quickInputTitle.background": "#ffffff1b",
//"radio.activeBackground": "#3d59a144",
//"radio.activeBorder": "#007acc",
//"radio.activeForeground": "#c0caf5",
//"radio.inactiveBorder": "#c0caf533",
//"radio.inactiveHoverBackground": "#5a5d5e80",
//"scmGraph.foreground1": "#ffb000",
//"scmGraph.foreground2": "#dc267f",
//"scmGraph.foreground3": "#994f00",
//"scmGraph.foreground4": "#40b0a6",
//"scmGraph.foreground5": "#b66dff",
//"scmGraph.historyItemBaseRefColor": "#ea5c00",
//"scmGraph.historyItemHoverAdditionsForeground": "#81b88b",
//"scmGraph.historyItemHoverDefaultLabelBackground": "#7e83b230",
//"scmGraph.historyItemHoverDefaultLabelForeground": "#787c99",
//"scmGraph.historyItemHoverDeletionsForeground": "#c74e39",
//"scmGraph.historyItemHoverLabelForeground": "#ffffff",
//"scmGraph.historyItemRefColor": "#7aa2f7",
//"scmGraph.historyItemRemoteRefColor": "#9d7cd8",
//"search.resultsInfoForeground": "#787c99a6",
//"searchEditor.findMatchBackground": "#3d59a143",
//"searchEditor.textInputBorder": "#0f0f14",
//"settings.checkboxBackground": "#14141b",
//"settings.checkboxBorder": "#14141b",
//"settings.checkboxForeground": "#787c99",
//"settings.dropdownBackground": "#14141b",
//"settings.dropdownBorder": "#14141b",
//"settings.dropdownForeground": "#787c99",
//"settings.dropdownListBorder": "#454545",
//"settings.focusedRowBackground": "#13131a99",
//"settings.focusedRowBorder": "#545c7e33",
//"settings.headerBorder": "#101014",
//"settings.modifiedItemIndicator": "#0c7d9d",
//"settings.numberInputBackground": "#14141b",
//"settings.numberInputBorder": "#0f0f14",
//"settings.numberInputForeground": "#a9b1d6",
//"settings.rowHoverBackground": "#13131a4d",
//"settings.sashBorder": "#101014",
//"settings.settingsHeaderHoverForeground": "#6183bbb3",
//"settings.textInputBackground": "#14141b",
//"settings.textInputBorder": "#0f0f14",
//"settings.textInputForeground": "#a9b1d6",
//"sideBarActivityBarTop.border": "#101014",
//"sideBarStickyScroll.background": "#16161e",
//"sideBarStickyScroll.shadow": "#00000033",
//"sideBarTitle.background": "#16161e",
//"sideBySideEditor.horizontalBorder": "#101014",
//"sideBySideEditor.verticalBorder": "#101014",
//"simpleFindWidget.sashBorder": "#454545",
//"statusBar.debuggingBorder": "#101014",
//"statusBar.focusBorder": "#787c99",
//"statusBar.noFolderBorder": "#101014",
//"statusBar.noFolderForeground": "#787c99",
//"statusBarItem.compactHoverBackground": "#ffffff33",
//"statusBarItem.errorBackground": "#313443",
//"statusBarItem.errorForeground": "#ffffff",
//"statusBarItem.errorHoverBackground": "#20222c",
//"statusBarItem.errorHoverForeground": "#787c99",
//"statusBarItem.focusBorder": "#787c99",
//"statusBarItem.hoverForeground": "#787c99",
//"statusBarItem.offlineBackground": "#6c1717",
//"statusBarItem.offlineForeground": "#ffffff",
//"statusBarItem.offlineHoverBackground": "#20222c",
//"statusBarItem.offlineHoverForeground": "#787c99",
//"statusBarItem.prominentForeground": "#787c99",
//"statusBarItem.prominentHoverForeground": "#787c99",
//"statusBarItem.remoteBackground": "#3d59a1",
//"statusBarItem.remoteForeground": "#ffffff",
//"statusBarItem.remoteHoverBackground": "#20222c",
//"statusBarItem.remoteHoverForeground": "#787c99",
//"statusBarItem.warningBackground": "#a36f22",
//"statusBarItem.warningForeground": "#ffffff",
//"statusBarItem.warningHoverBackground": "#20222c",
//"statusBarItem.warningHoverForeground": "#787c99",
//"symbolIcon.arrayForeground": "#787c99",
//"symbolIcon.booleanForeground": "#787c99",
//"symbolIcon.classForeground": "#ee9d28",
//"symbolIcon.colorForeground": "#787c99",
//"symbolIcon.constantForeground": "#787c99",
//"symbolIcon.constructorForeground": "#b180d7",
//"symbolIcon.enumeratorForeground": "#ee9d28",
//"symbolIcon.enumeratorMemberForeground": "#75beff",
//"symbolIcon.eventForeground": "#ee9d28",
//"symbolIcon.fieldForeground": "#75beff",
//"symbolIcon.fileForeground": "#787c99",
//"symbolIcon.folderForeground": "#787c99",
//"symbolIcon.functionForeground": "#b180d7",
//"symbolIcon.interfaceForeground": "#75beff",
//"symbolIcon.keyForeground": "#787c99",
//"symbolIcon.keywordForeground": "#787c99",
//"symbolIcon.methodForeground": "#b180d7",
//"symbolIcon.moduleForeground": "#787c99",
//"symbolIcon.namespaceForeground": "#787c99",
//"symbolIcon.nullForeground": "#787c99",
//"symbolIcon.numberForeground": "#787c99",
//"symbolIcon.objectForeground": "#787c99",
//"symbolIcon.operatorForeground": "#787c99",
//"symbolIcon.packageForeground": "#787c99",
//"symbolIcon.propertyForeground": "#787c99",
//"symbolIcon.referenceForeground": "#787c99",
//"symbolIcon.snippetForeground": "#787c99",
//"symbolIcon.stringForeground": "#787c99",
//"symbolIcon.structForeground": "#787c99",
//"symbolIcon.textForeground": "#787c99",
//"symbolIcon.typeParameterForeground": "#787c99",
//"symbolIcon.unitForeground": "#787c99",
//"symbolIcon.variableForeground": "#75beff",
//"tab.dragAndDropBorder": "#a9b1d6",
//"tab.selectedBackground": "#16161e",
//"tab.selectedForeground": "#a9b1d6",
//"tab.unfocusedActiveBackground": "#16161e",
//"tab.unfocusedActiveModifiedBorder": "#1a1b2680",
//"tab.unfocusedInactiveBackground": "#16161e",
//"tab.unfocusedInactiveModifiedBorder": "#1f202e80",
//"terminal.border": "#101014",
//"terminal.dropBackground": "#1e202e",
//"terminal.findMatchBackground": "#3d59a166",
//"terminal.findMatchHighlightBackground": "#3d59a166",
//"terminal.hoverHighlightBackground": "#264f7820",
//"terminal.inactiveSelectionBackground": "#515c7e27",
//"terminal.initialHintForeground": "#ffffff56",
//"terminal.tab.activeBorder": "#3d59a1",
//"terminalCommandDecoration.defaultBackground": "#ffffff40",
//"terminalCommandDecoration.errorBackground": "#f14c4c",
//"terminalCommandDecoration.successBackground": "#1b81a8",
//"terminalCommandGuide.foreground": "#1c1d29",
//"terminalOverviewRuler.border": "#101014",
//"terminalOverviewRuler.cursorForeground": "#a0a0a0cc",
//"terminalOverviewRuler.findMatchForeground": "#a9b1d644",
//"terminalStickyScrollHover.background": "#2a2d2e",
//"testing.coverCountBadgeBackground": "#7e83b230",
//"testing.coverCountBadgeForeground": "#acb0d0",
//"testing.coveredBackground": "#41a6b520",
//"testing.coveredBorder": "#41a6b518",
//"testing.coveredGutterBackground": "#41a6b513",
//"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": "#a9b1d680",
//"testing.messagePeekBorder": "#0da0ba",
//"testing.messagePeekHeaderBackground": "#0da0ba1a",
//"testing.peekBorder": "#db4b4b",
//"testing.peekHeaderBackground": "#db4b4b1a",
//"testing.runAction": "#73c991",
//"testing.uncoveredBackground": "#db4b4b22",
//"testing.uncoveredBorder": "#db4b4b1a",
//"testing.uncoveredBranchBackground": "#4d272f",
//"testing.uncoveredGutterBackground": "#db4b4b33",
//"textBlockQuote.border": "#007acc80",
//"textPreformat.background": "#ffffff1a",
//"tree.inactiveIndentGuidesStroke": "#2b2b3b66",
//"tree.tableColumnsBorder": "#cccccc20",
//"tree.tableOddRowsBackground": "#787c990a",
//"walkthrough.stepTitle.foreground": "#ffffff",
//"welcomePage.progress.background": "#14141b",
//"welcomePage.progress.foreground": "#6183bb",
//"welcomePage.tileBackground": "#16161e",
//"welcomePage.tileBorder": "#ffffff1a",
//"welcomePage.tileHoverBackground": "#1a1a24",
//"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.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.hoverBackground": null,
//"tab.hoverBorder": null,
//"tab.selectedBorderTop": null,
//"tab.unfocusedActiveBorderTop": null,
//"tab.unfocusedHoverBackground": null,
//"tab.unfocusedHoverBorder": null,
//"terminal.findMatchBorder": null,
//"terminal.findMatchHighlightBorder": null,
//"terminal.selectionForeground": null,
//"terminalCursor.background": null,
//"terminalCursor.foreground": null,
//"terminalStickyScroll.background": null,
//"terminalStickyScroll.border": null,
//"testing.message.error.lineBackground": null,
//"testing.message.info.lineBackground": null,
//"toolbar.hoverOutline": null,
//"welcomePage.background": null,
//"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": "#51597D"
}
},
{
"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": "#5A638C"
}
},
{
"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": "#646E9C"
}
},
{
"scope": [
"variable.other.constant",
"punctuation.definition.constant",
"constant.language",
"constant.numeric",
"support.constant",
"constant.other.caps"
],