-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlight.jsonc
2395 lines (2395 loc) · 70.4 KB
/
light.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.activeBackground": "#00000000",
"activityBar.activeBorder": "#00000000",
"activityBar.activeFocusBorder": "#00000000",
"activityBar.background": "#dce0e8",
"activityBar.border": "#00000000",
"activityBar.dropBorder": "#8839ef33",
"activityBar.foreground": "#8839ef",
"activityBar.inactiveForeground": "#9ca0b0",
"activityBarBadge.background": "#8839ef",
"activityBarBadge.foreground": "#dce0e8",
"activityBarTop.activeBorder": "#00000000",
"activityBarTop.dropBorder": "#8839ef33",
"activityBarTop.foreground": "#8839ef",
"activityBarTop.inactiveForeground": "#9ca0b0",
"badge.background": "#bcc0cc",
"badge.foreground": "#4c4f69",
"banner.background": "#bcc0cc",
"banner.foreground": "#4c4f69",
"banner.iconForeground": "#4c4f69",
"breadcrumb.activeSelectionForeground": "#8839ef",
"breadcrumb.background": "#eff1f5",
"breadcrumb.focusForeground": "#8839ef",
"breadcrumb.foreground": "#4c4f69cc",
"breadcrumbPicker.background": "#e6e9ef",
"button.background": "#8839ef",
"button.border": "#00000000",
"button.foreground": "#dce0e8",
"button.hoverBackground": "#9c5af2",
"button.secondaryBackground": "#acb0be",
"button.secondaryForeground": "#4c4f69",
"button.secondaryHoverBackground": "#c0c3ce",
"button.separator": "#00000000",
"charts.blue": "#1e66f5",
"charts.foreground": "#4c4f69",
"charts.green": "#40a02b",
"charts.lines": "#5c5f77",
"charts.orange": "#fe640b",
"charts.purple": "#8839ef",
"charts.red": "#d20f39",
"charts.yellow": "#df8e1d",
"checkbox.background": "#bcc0cc",
"checkbox.border": "#00000000",
"checkbox.foreground": "#8839ef",
"commandCenter.activeBackground": "#acb0be33",
"commandCenter.activeBorder": "#8839ef",
"commandCenter.activeForeground": "#8839ef",
"commandCenter.background": "#e6e9ef",
"commandCenter.border": "#00000000",
"commandCenter.foreground": "#5c5f77",
"commandCenter.inactiveBorder": "#00000000",
"commandCenter.inactiveForeground": "#5c5f77",
"debugConsole.errorForeground": "#d20f39",
"debugConsole.infoForeground": "#1e66f5",
"debugConsole.sourceForeground": "#dc8a78",
"debugConsole.warningForeground": "#fe640b",
"debugConsoleInputIcon.foreground": "#4c4f69",
"debugExceptionWidget.background": "#dce0e8",
"debugExceptionWidget.border": "#8839ef",
"debugIcon.breakpointCurrentStackframeForeground": "#acb0be",
"debugIcon.breakpointDisabledForeground": "#d20f3999",
"debugIcon.breakpointForeground": "#d20f39",
"debugIcon.breakpointStackframeForeground": "#acb0be",
"debugIcon.breakpointUnverifiedForeground": "#bf607c",
"debugIcon.continueForeground": "#40a02b",
"debugIcon.disconnectForeground": "#acb0be",
"debugIcon.pauseForeground": "#1e66f5",
"debugIcon.restartForeground": "#179299",
"debugIcon.startForeground": "#40a02b",
"debugIcon.stepBackForeground": "#acb0be",
"debugIcon.stepIntoForeground": "#4c4f69",
"debugIcon.stepOutForeground": "#4c4f69",
"debugIcon.stepOverForeground": "#8839ef",
"debugIcon.stopForeground": "#d20f39",
"debugTokenExpression.boolean": "#8839ef",
"debugTokenExpression.error": "#d20f39",
"debugTokenExpression.number": "#fe640b",
"debugTokenExpression.string": "#40a02b",
"debugToolBar.background": "#dce0e8",
"debugToolBar.border": "#00000000",
"descriptionForeground": "#4c4f69",
"diffEditor.border": "#acb0be",
"diffEditor.diagonalFill": "#acb0be99",
"diffEditor.insertedLineBackground": "#40a02b26",
"diffEditor.insertedTextBackground": "#40a02b1a",
"diffEditor.removedLineBackground": "#d20f3926",
"diffEditor.removedTextBackground": "#d20f391a",
"diffEditorOverview.insertedForeground": "#40a02bcc",
"diffEditorOverview.removedForeground": "#d20f39cc",
"disabledForeground": "#6c6f85",
"dropdown.background": "#e6e9ef",
"dropdown.border": "#8839ef",
"dropdown.foreground": "#4c4f69",
"dropdown.listBackground": "#acb0be",
"editor.background": "#eff1f5",
"editor.findMatchBackground": "#e6adbd",
"editor.findMatchBorder": "#d20f3933",
"editor.findMatchHighlightBackground": "#a9daf0",
"editor.findMatchHighlightBorder": "#04a5e533",
"editor.findRangeHighlightBackground": "#a9daf0",
"editor.findRangeHighlightBorder": "#04a5e533",
"editor.focusedStackFrameHighlightBackground": "#40a02b26",
"editor.foldBackground": "#04a5e540",
"editor.foreground": "#4c4f69",
"editor.hoverHighlightBackground": "#04a5e540",
"editor.lineHighlightBackground": "#4c4f6912",
"editor.lineHighlightBorder": "#00000000",
"editor.rangeHighlightBackground": "#04a5e540",
"editor.rangeHighlightBorder": "#00000000",
"editor.selectionBackground": "#7c7f934d",
"editor.selectionHighlightBackground": "#7c7f9333",
"editor.selectionHighlightBorder": "#7c7f9333",
"editor.stackFrameHighlightBackground": "#df8e1d26",
"editor.wordHighlightBackground": "#7c7f9333",
"editor.wordHighlightStrongBackground": "#1e66f526",
"editorBracketHighlight.foreground1": "#d20f39",
"editorBracketHighlight.foreground2": "#fe640b",
"editorBracketHighlight.foreground3": "#df8e1d",
"editorBracketHighlight.foreground4": "#40a02b",
"editorBracketHighlight.foreground5": "#209fb5",
"editorBracketHighlight.foreground6": "#8839ef",
"editorBracketHighlight.unexpectedBracket.foreground": "#e64553",
"editorBracketMatch.background": "#7c7f931a",
"editorBracketMatch.border": "#7c7f93",
"editorCodeLens.foreground": "#8c8fa1",
"editorCursor.background": "#eff1f5",
"editorCursor.foreground": "#dc8a78",
"editorError.background": "#00000000",
"editorError.border": "#00000000",
"editorError.foreground": "#d20f39",
"editorGroup.border": "#acb0be",
"editorGroup.dropBackground": "#8839ef33",
"editorGroup.emptyBackground": "#eff1f5",
"editorGroupHeader.tabsBackground": "#dce0e8",
"editorGutter.addedBackground": "#40a02b",
"editorGutter.background": "#eff1f5",
"editorGutter.commentGlyphForeground": "#8839ef",
"editorGutter.commentRangeForeground": "#ccd0da",
"editorGutter.deletedBackground": "#d20f39",
"editorGutter.foldingControlForeground": "#7c7f93",
"editorGutter.modifiedBackground": "#df8e1d",
"editorHoverWidget.background": "#e6e9ef",
"editorHoverWidget.border": "#acb0be",
"editorHoverWidget.foreground": "#4c4f69",
"editorIndentGuide.activeBackground": "#acb0be",
"editorIndentGuide.background": "#bcc0cc",
"editorInfo.background": "#00000000",
"editorInfo.border": "#00000000",
"editorInfo.foreground": "#1e66f5",
"editorInlayHint.background": "#e6e9efbf",
"editorInlayHint.foreground": "#acb0be",
"editorInlayHint.parameterBackground": "#e6e9efbf",
"editorInlayHint.parameterForeground": "#6c6f85",
"editorInlayHint.typeBackground": "#e6e9efbf",
"editorInlayHint.typeForeground": "#5c5f77",
"editorLightBulb.foreground": "#df8e1d",
"editorLineNumber.activeForeground": "#8839ef",
"editorLineNumber.foreground": "#8c8fa1",
"editorLink.activeForeground": "#8839ef",
"editorMarkerNavigation.background": "#e6e9ef",
"editorMarkerNavigationError.background": "#d20f39",
"editorMarkerNavigationInfo.background": "#1e66f5",
"editorMarkerNavigationWarning.background": "#fe640b",
"editorOverviewRuler.background": "#e6e9ef",
"editorOverviewRuler.border": "#4c4f6912",
"editorOverviewRuler.modifiedForeground": "#df8e1d",
"editorRuler.foreground": "#acb0be",
"editorStickyScrollHover.background": "#ccd0da",
"editorSuggestWidget.background": "#e6e9ef",
"editorSuggestWidget.border": "#acb0be",
"editorSuggestWidget.foreground": "#4c4f69",
"editorSuggestWidget.highlightForeground": "#8839ef",
"editorSuggestWidget.selectedBackground": "#ccd0da",
"editorWarning.background": "#00000000",
"editorWarning.border": "#00000000",
"editorWarning.foreground": "#fe640b",
"editorWhitespace.foreground": "#7c7f9366",
"editorWidget.background": "#e6e9ef",
"editorWidget.foreground": "#4c4f69",
"editorWidget.resizeBorder": "#acb0be",
"errorForeground": "#d20f39",
"extensionBadge.remoteBackground": "#1e66f5",
"extensionBadge.remoteForeground": "#dce0e8",
"extensionButton.prominentBackground": "#8839ef",
"extensionButton.prominentForeground": "#dce0e8",
"extensionButton.prominentHoverBackground": "#9c5af2",
"extensionButton.separator": "#eff1f5",
"extensionIcon.preReleaseForeground": "#acb0be",
"extensionIcon.sponsorForeground": "#ea76cb",
"extensionIcon.starForeground": "#df8e1d",
"extensionIcon.verifiedForeground": "#40a02b",
"focusBorder": "#8839ef",
"foreground": "#4c4f69",
"gitDecoration.addedResourceForeground": "#40a02b",
"gitDecoration.conflictingResourceForeground": "#8839ef",
"gitDecoration.deletedResourceForeground": "#d20f39",
"gitDecoration.ignoredResourceForeground": "#9ca0b0",
"gitDecoration.modifiedResourceForeground": "#df8e1d",
"gitDecoration.stageDeletedResourceForeground": "#d20f39",
"gitDecoration.stageModifiedResourceForeground": "#df8e1d",
"gitDecoration.submoduleResourceForeground": "#1e66f5",
"gitDecoration.untrackedResourceForeground": "#40a02b",
"gitlens.closedAutolinkedIssueIconColor": "#8839ef",
"gitlens.closedPullRequestIconColor": "#d20f39",
"gitlens.decorations.branchAheadForegroundColor": "#40a02b",
"gitlens.decorations.branchBehindForegroundColor": "#fe640b",
"gitlens.decorations.branchDivergedForegroundColor": "#df8e1d",
"gitlens.decorations.branchMissingUpstreamForegroundColor": "#fe640b",
"gitlens.decorations.branchUnpublishedForegroundColor": "#40a02b",
"gitlens.decorations.statusMergingOrRebasingConflictForegroundColor": "#e64553",
"gitlens.decorations.statusMergingOrRebasingForegroundColor": "#df8e1d",
"gitlens.decorations.workspaceCurrentForegroundColor": "#8839ef",
"gitlens.decorations.workspaceRepoMissingForegroundColor": "#6c6f85",
"gitlens.decorations.workspaceRepoOpenForegroundColor": "#8839ef",
"gitlens.decorations.worktreeHasUncommittedChangesForegroundColor": "#fe640b",
"gitlens.decorations.worktreeMissingForegroundColor": "#e64553",
"gitlens.graphChangesColumnAddedColor": "#40a02b",
"gitlens.graphChangesColumnDeletedColor": "#d20f39",
"gitlens.graphLane10Color": "#ea76cb",
"gitlens.graphLane1Color": "#8839ef",
"gitlens.graphLane2Color": "#df8e1d",
"gitlens.graphLane3Color": "#1e66f5",
"gitlens.graphLane4Color": "#dd7878",
"gitlens.graphLane5Color": "#40a02b",
"gitlens.graphLane6Color": "#7287fd",
"gitlens.graphLane7Color": "#dc8a78",
"gitlens.graphLane8Color": "#d20f39",
"gitlens.graphLane9Color": "#179299",
"gitlens.graphMinimapMarkerHeadColor": "#40a02b",
"gitlens.graphMinimapMarkerHighlightsColor": "#df8e1d",
"gitlens.graphMinimapMarkerLocalBranchesColor": "#1e66f5",
"gitlens.graphMinimapMarkerRemoteBranchesColor": "#0b57ef",
"gitlens.graphMinimapMarkerStashesColor": "#8839ef",
"gitlens.graphMinimapMarkerTagsColor": "#dd7878",
"gitlens.graphMinimapMarkerUpstreamColor": "#388c26",
"gitlens.graphScrollMarkerHeadColor": "#40a02b",
"gitlens.graphScrollMarkerHighlightsColor": "#df8e1d",
"gitlens.graphScrollMarkerLocalBranchesColor": "#1e66f5",
"gitlens.graphScrollMarkerRemoteBranchesColor": "#0b57ef",
"gitlens.graphScrollMarkerStashesColor": "#8839ef",
"gitlens.graphScrollMarkerTagsColor": "#dd7878",
"gitlens.graphScrollMarkerUpstreamColor": "#388c26",
"gitlens.gutterBackgroundColor": "#ccd0da4d",
"gitlens.gutterForegroundColor": "#4c4f69",
"gitlens.gutterUncommittedForegroundColor": "#8839ef",
"gitlens.lineHighlightBackgroundColor": "#8839ef26",
"gitlens.lineHighlightOverviewRulerColor": "#8839efcc",
"gitlens.mergedPullRequestIconColor": "#8839ef",
"gitlens.openAutolinkedIssueIconColor": "#40a02b",
"gitlens.openPullRequestIconColor": "#40a02b",
"gitlens.trailingLineBackgroundColor": "#00000000",
"gitlens.trailingLineForegroundColor": "#4c4f694d",
"gitlens.unpublishedChangesIconColor": "#40a02b",
"gitlens.unpublishedCommitIconColor": "#40a02b",
"gitlens.unpulledChangesIconColor": "#fe640b",
"icon.foreground": "#8839ef",
"input.background": "#ccd0da",
"input.border": "#00000000",
"input.foreground": "#4c4f69",
"input.placeholderForeground": "#4c4f6973",
"inputOption.activeBackground": "#acb0be",
"inputOption.activeBorder": "#8839ef",
"inputOption.activeForeground": "#4c4f69",
"inputValidation.errorBackground": "#d20f39",
"inputValidation.errorBorder": "#dce0e833",
"inputValidation.errorForeground": "#dce0e8",
"inputValidation.infoBackground": "#1e66f5",
"inputValidation.infoBorder": "#dce0e833",
"inputValidation.infoForeground": "#dce0e8",
"inputValidation.warningBackground": "#fe640b",
"inputValidation.warningBorder": "#dce0e833",
"inputValidation.warningForeground": "#dce0e8",
"list.activeSelectionBackground": "#ccd0da",
"list.activeSelectionForeground": "#4c4f69",
"list.dropBackground": "#8839ef33",
"list.focusBackground": "#ccd0da",
"list.focusForeground": "#4c4f69",
"list.focusOutline": "#00000000",
"list.highlightForeground": "#8839ef",
"list.hoverBackground": "#ccd0da80",
"list.hoverForeground": "#4c4f69",
"list.inactiveSelectionBackground": "#ccd0da",
"list.inactiveSelectionForeground": "#4c4f69",
"list.warningForeground": "#fe640b",
"listFilterWidget.background": "#bcc0cc",
"listFilterWidget.noMatchesOutline": "#d20f39",
"listFilterWidget.outline": "#00000000",
"menu.background": "#eff1f5",
"menu.border": "#eff1f580",
"menu.foreground": "#4c4f69",
"menu.selectionBackground": "#acb0be",
"menu.selectionBorder": "#00000000",
"menu.selectionForeground": "#4c4f69",
"menu.separatorBackground": "#acb0be",
"menubar.selectionBackground": "#bcc0cc",
"menubar.selectionForeground": "#4c4f69",
"merge.commonContentBackground": "#bcc0cc",
"merge.commonHeaderBackground": "#acb0be",
"merge.currentContentBackground": "#40a02b33",
"merge.currentHeaderBackground": "#40a02b66",
"merge.incomingContentBackground": "#1e66f533",
"merge.incomingHeaderBackground": "#1e66f566",
"minimap.background": "#e6e9ef80",
"minimap.errorHighlight": "#d20f39bf",
"minimap.findMatchHighlight": "#04a5e54d",
"minimap.selectionHighlight": "#acb0bebf",
"minimap.selectionOccurrenceHighlight": "#acb0bebf",
"minimap.warningHighlight": "#fe640bbf",
"minimapGutter.addedBackground": "#40a02bbf",
"minimapGutter.deletedBackground": "#d20f39bf",
"minimapGutter.modifiedBackground": "#df8e1dbf",
"minimapSlider.activeBackground": "#8839ef99",
"minimapSlider.background": "#8839ef33",
"minimapSlider.hoverBackground": "#8839ef66",
"notificationCenter.border": "#8839ef",
"notificationCenterHeader.background": "#e6e9ef",
"notificationCenterHeader.foreground": "#4c4f69",
"notificationLink.foreground": "#1e66f5",
"notificationToast.border": "#8839ef",
"notifications.background": "#e6e9ef",
"notifications.border": "#8839ef",
"notifications.foreground": "#4c4f69",
"notificationsErrorIcon.foreground": "#d20f39",
"notificationsInfoIcon.foreground": "#1e66f5",
"notificationsWarningIcon.foreground": "#fe640b",
"panel.background": "#eff1f5",
"panel.border": "#acb0be",
"panelSection.border": "#acb0be",
"panelSection.dropBackground": "#8839ef33",
"panelTitle.activeBorder": "#8839ef",
"panelTitle.activeForeground": "#4c4f69",
"panelTitle.inactiveForeground": "#6c6f85",
"peekView.border": "#8839ef",
"peekViewEditor.background": "#e6e9ef",
"peekViewEditor.matchHighlightBackground": "#04a5e54d",
"peekViewEditor.matchHighlightBorder": "#00000000",
"peekViewEditorGutter.background": "#e6e9ef",
"peekViewResult.background": "#e6e9ef",
"peekViewResult.fileForeground": "#4c4f69",
"peekViewResult.lineForeground": "#4c4f69",
"peekViewResult.matchHighlightBackground": "#04a5e54d",
"peekViewResult.selectionBackground": "#ccd0da",
"peekViewResult.selectionForeground": "#4c4f69",
"peekViewTitle.background": "#eff1f5",
"peekViewTitleDescription.foreground": "#5c5f77b3",
"peekViewTitleLabel.foreground": "#4c4f69",
"pickerGroup.border": "#8839ef",
"pickerGroup.foreground": "#8839ef",
"problemsErrorIcon.foreground": "#d20f39",
"problemsInfoIcon.foreground": "#1e66f5",
"problemsWarningIcon.foreground": "#fe640b",
"progressBar.background": "#8839ef",
"sash.hoverBorder": "#8839ef",
"scrollbar.shadow": "#dce0e8",
"scrollbarSlider.activeBackground": "#ccd0da66",
"scrollbarSlider.background": "#acb0be80",
"scrollbarSlider.hoverBackground": "#9ca0b0",
"selection.background": "#8839ef66",
"settings.dropdownBackground": "#bcc0cc",
"settings.dropdownListBorder": "#00000000",
"settings.focusedRowBackground": "#acb0be33",
"settings.headerForeground": "#4c4f69",
"settings.modifiedItemIndicator": "#8839ef",
"settings.numberInputBackground": "#bcc0cc",
"settings.numberInputBorder": "#00000000",
"settings.textInputBackground": "#bcc0cc",
"settings.textInputBorder": "#00000000",
"sideBar.background": "#e6e9ef",
"sideBar.border": "#00000000",
"sideBar.dropBackground": "#8839ef33",
"sideBar.foreground": "#4c4f69",
"sideBarSectionHeader.background": "#e6e9ef",
"sideBarSectionHeader.foreground": "#4c4f69",
"sideBarTitle.foreground": "#8839ef",
"statusBar.background": "#dce0e8",
"statusBar.border": "#00000000",
"statusBar.debuggingBackground": "#fe640b",
"statusBar.debuggingBorder": "#00000000",
"statusBar.debuggingForeground": "#dce0e8",
"statusBar.foreground": "#4c4f69",
"statusBar.noFolderBackground": "#dce0e8",
"statusBar.noFolderBorder": "#00000000",
"statusBar.noFolderForeground": "#4c4f69",
"statusBarItem.activeBackground": "#acb0be66",
"statusBarItem.errorBackground": "#00000000",
"statusBarItem.errorForeground": "#d20f39",
"statusBarItem.hoverBackground": "#acb0be33",
"statusBarItem.prominentBackground": "#00000000",
"statusBarItem.prominentForeground": "#8839ef",
"statusBarItem.prominentHoverBackground": "#acb0be33",
"statusBarItem.remoteBackground": "#1e66f5",
"statusBarItem.remoteForeground": "#dce0e8",
"statusBarItem.warningBackground": "#00000000",
"statusBarItem.warningForeground": "#fe640b",
"symbolIcon.arrayForeground": "#fe640b",
"symbolIcon.booleanForeground": "#8839ef",
"symbolIcon.classForeground": "#df8e1d",
"symbolIcon.colorForeground": "#ea76cb",
"symbolIcon.constantForeground": "#fe640b",
"symbolIcon.constructorForeground": "#7287fd",
"symbolIcon.enumeratorForeground": "#df8e1d",
"symbolIcon.enumeratorMemberForeground": "#df8e1d",
"symbolIcon.eventForeground": "#ea76cb",
"symbolIcon.fieldForeground": "#4c4f69",
"symbolIcon.fileForeground": "#8839ef",
"symbolIcon.folderForeground": "#8839ef",
"symbolIcon.functionForeground": "#1e66f5",
"symbolIcon.interfaceForeground": "#df8e1d",
"symbolIcon.keyForeground": "#179299",
"symbolIcon.keywordForeground": "#8839ef",
"symbolIcon.methodForeground": "#1e66f5",
"symbolIcon.moduleForeground": "#4c4f69",
"symbolIcon.namespaceForeground": "#df8e1d",
"symbolIcon.nullForeground": "#e64553",
"symbolIcon.numberForeground": "#fe640b",
"symbolIcon.objectForeground": "#df8e1d",
"symbolIcon.operatorForeground": "#179299",
"symbolIcon.packageForeground": "#dd7878",
"symbolIcon.propertyForeground": "#e64553",
"symbolIcon.referenceForeground": "#df8e1d",
"symbolIcon.snippetForeground": "#dd7878",
"symbolIcon.stringForeground": "#40a02b",
"symbolIcon.structForeground": "#179299",
"symbolIcon.textForeground": "#4c4f69",
"symbolIcon.typeParameterForeground": "#e64553",
"symbolIcon.unitForeground": "#4c4f69",
"symbolIcon.variableForeground": "#4c4f69",
"tab.activeBackground": "#eff1f5",
"tab.activeBorder": "#00000000",
"tab.activeBorderTop": "#8839ef",
"tab.activeForeground": "#8839ef",
"tab.activeModifiedBorder": "#df8e1d",
"tab.border": "#e6e9ef",
"tab.hoverBackground": "#ffffff",
"tab.hoverBorder": "#00000000",
"tab.hoverForeground": "#8839ef",
"tab.inactiveBackground": "#e6e9ef",
"tab.inactiveForeground": "#9ca0b0",
"tab.inactiveModifiedBorder": "#df8e1d4d",
"tab.lastPinnedBorder": "#8839ef",
"tab.unfocusedActiveBackground": "#e6e9ef",
"tab.unfocusedActiveBorder": "#00000000",
"tab.unfocusedActiveBorderTop": "#8839ef4d",
"tab.unfocusedInactiveBackground": "#d6dbe5",
"terminal.ansiBlack": "#5c5f77",
"terminal.ansiBlue": "#1e66f5",
"terminal.ansiBrightBlack": "#6c6f85",
"terminal.ansiBrightBlue": "#456eff",
"terminal.ansiBrightCyan": "#2d9fa8",
"terminal.ansiBrightGreen": "#49af3d",
"terminal.ansiBrightMagenta": "#fe85d8",
"terminal.ansiBrightRed": "#de293e",
"terminal.ansiBrightWhite": "#bcc0cc",
"terminal.ansiBrightYellow": "#eea02d",
"terminal.ansiCyan": "#179299",
"terminal.ansiGreen": "#40a02b",
"terminal.ansiMagenta": "#ea76cb",
"terminal.ansiRed": "#d20f39",
"terminal.ansiWhite": "#acb0be",
"terminal.ansiYellow": "#df8e1d",
"terminal.border": "#acb0be",
"terminal.dropBackground": "#8839ef33",
"terminal.foreground": "#4c4f69",
"terminal.inactiveSelectionBackground": "#acb0be80",
"terminal.selectionBackground": "#acb0be",
"terminal.tab.activeBorder": "#8839ef",
"terminalCommandDecoration.defaultBackground": "#acb0be",
"terminalCommandDecoration.errorBackground": "#d20f39",
"terminalCommandDecoration.successBackground": "#40a02b",
"terminalCursor.background": "#eff1f5",
"terminalCursor.foreground": "#dc8a78",
"textBlockQuote.background": "#e6e9ef",
"textBlockQuote.border": "#dce0e8",
"textCodeBlock.background": "#eff1f5",
"textLink.activeForeground": "#04a5e5",
"textLink.foreground": "#1e66f5",
"textPreformat.foreground": "#4c4f69",
"textSeparator.foreground": "#8839ef",
"titleBar.activeBackground": "#dce0e8",
"titleBar.activeForeground": "#4c4f69",
"titleBar.border": "#00000000",
"titleBar.inactiveBackground": "#dce0e8",
"titleBar.inactiveForeground": "#4c4f6980",
"tree.inactiveIndentGuidesStroke": "#bcc0cc",
"tree.indentGuidesStroke": "#7c7f93",
"walkThrough.embeddedEditorBackground": "#eff1f54d",
"welcomePage.progress.background": "#dce0e8",
"welcomePage.progress.foreground": "#8839ef",
"welcomePage.tileBackground": "#e6e9ef",
"widget.shadow": "#e6e9ef80",
"window.activeBorder": "#00000000",
"window.inactiveBorder": "#00000000",
//"actionBar.toggledBackground": "#acb0be",
//"activityErrorBadge.background": "#e51400",
//"activityErrorBadge.foreground": "#ffffff",
//"activityWarningBadge.background": "#bf8803",
//"activityWarningBadge.foreground": "#ffffff",
//"chart.axis": "#00000099",
//"chart.guide": "#00000033",
//"chart.line": "#236b8e",
//"chat.avatarBackground": "#f2f2f2",
//"chat.avatarForeground": "#4c4f69",
//"chat.editedFileForeground": "#895503",
//"chat.requestBackground": "#eff1f59e",
//"chat.requestBorder": "#0000001a",
//"chat.slashCommandBackground": "#d2ecff99",
//"chat.slashCommandForeground": "#306ca2",
//"checkbox.selectBackground": "#e6e9ef",
//"checkbox.selectBorder": "#8839ef",
//"clangd.inactiveRegions.background": "#dcdcdc4c",
//"commandCenter.debuggingBackground": "#fe640b42",
//"commentsView.resolvedIcon": "#6c6f85",
//"commentsView.unresolvedIcon": "#00000000",
//"debugTokenExpression.name": "#9b46b0",
//"debugTokenExpression.type": "#4a90e2",
//"debugTokenExpression.value": "#6c6c6ccc",
//"debugView.exceptionLabelBackground": "#a31515",
//"debugView.exceptionLabelForeground": "#ffffff",
//"debugView.stateLabelBackground": "#88888844",
//"debugView.stateLabelForeground": "#4c4f69",
//"debugView.valueChangedHighlight": "#569cd6",
//"diffEditor.move.border": "#8b8b8b9c",
//"diffEditor.moveActive.border": "#ffa500",
//"diffEditor.unchangedCodeBackground": "#b8b8b829",
//"diffEditor.unchangedRegionBackground": "#e6e9ef",
//"diffEditor.unchangedRegionForeground": "#4c4f69",
//"diffEditor.unchangedRegionShadow": "#737373bf",
//"editor.compositionBorder": "#000000",
//"editor.foldPlaceholderForeground": "#808080",
//"editor.inactiveSelectionBackground": "#7c7f9327",
//"editor.inlineValuesBackground": "#ffc80033",
//"editor.inlineValuesForeground": "#00000080",
//"editor.linkedEditingBackground": "#ff00004d",
//"editor.placeholder.foreground": "#00000077",
//"editor.snippetFinalTabstopHighlightBorder": "#0a326480",
//"editor.snippetTabstopHighlightBackground": "#0a326433",
//"editor.symbolHighlightBackground": "#a9daf0",
//"editor.wordHighlightTextBackground": "#7c7f9333",
//"editorActionList.background": "#e6e9ef",
//"editorActionList.focusBackground": "#ccd0da",
//"editorActionList.focusForeground": "#4c4f69",
//"editorActionList.foreground": "#4c4f69",
//"editorActiveLineNumber.foreground": "#0b216f",
//"editorBracketPairGuide.activeBackground1": "#00000000",
//"editorBracketPairGuide.activeBackground2": "#00000000",
//"editorBracketPairGuide.activeBackground3": "#00000000",
//"editorBracketPairGuide.activeBackground4": "#00000000",
//"editorBracketPairGuide.activeBackground5": "#00000000",
//"editorBracketPairGuide.activeBackground6": "#00000000",
//"editorBracketPairGuide.background1": "#00000000",
//"editorBracketPairGuide.background2": "#00000000",
//"editorBracketPairGuide.background3": "#00000000",
//"editorBracketPairGuide.background4": "#00000000",
//"editorBracketPairGuide.background5": "#00000000",
//"editorBracketPairGuide.background6": "#00000000",
//"editorCommentsWidget.rangeActiveBackground": "#00000000",
//"editorCommentsWidget.rangeBackground": "#00000000",
//"editorCommentsWidget.replyInputBackground": "#eff1f5",
//"editorCommentsWidget.resolvedBorder": "#6c6f85",
//"editorCommentsWidget.unresolvedBorder": "#00000000",
//"editorGhostText.foreground": "#00000077",
//"editorGroup.dropIntoPromptBackground": "#e6e9ef",
//"editorGroup.dropIntoPromptForeground": "#4c4f69",
//"editorGroupHeader.noTabsBackground": "#eff1f5",
//"editorGutter.commentUnresolvedGlyphForeground": "#8839ef",
//"editorHint.foreground": "#6c6c6c",
//"editorHoverWidget.highlightForeground": "#8839ef",
//"editorHoverWidget.statusBarBackground": "#d8dde6",
//"editorIndentGuide.activeBackground1": "#acb0be",
//"editorIndentGuide.activeBackground2": "#00000000",
//"editorIndentGuide.activeBackground3": "#00000000",
//"editorIndentGuide.activeBackground4": "#00000000",
//"editorIndentGuide.activeBackground5": "#00000000",
//"editorIndentGuide.activeBackground6": "#00000000",
//"editorIndentGuide.background1": "#bcc0cc",
//"editorIndentGuide.background2": "#00000000",
//"editorIndentGuide.background3": "#00000000",
//"editorIndentGuide.background4": "#00000000",
//"editorIndentGuide.background5": "#00000000",
//"editorIndentGuide.background6": "#00000000",
//"editorLightBulbAi.foreground": "#df8e1d",
//"editorLightBulbAutoFix.foreground": "#007acc",
//"editorMarkerNavigationError.headerBackground": "#d20f391a",
//"editorMarkerNavigationInfo.headerBackground": "#1e66f51a",
//"editorMarkerNavigationWarning.headerBackground": "#fe640b1a",
//"editorMultiCursor.primary.background": "#eff1f5",
//"editorMultiCursor.primary.foreground": "#dc8a78",
//"editorMultiCursor.secondary.background": "#eff1f5",
//"editorMultiCursor.secondary.foreground": "#dc8a78",
//"editorOverviewRuler.addedForeground": "#40a02b99",
//"editorOverviewRuler.bracketMatchForeground": "#a0a0a0",
//"editorOverviewRuler.commentForeground": "#ccd0da",
//"editorOverviewRuler.commentUnresolvedForeground": "#ccd0da",
//"editorOverviewRuler.commonContentForeground": "#acb0be",
//"editorOverviewRuler.currentContentForeground": "#40a02b66",
//"editorOverviewRuler.deletedForeground": "#d20f3999",
//"editorOverviewRuler.errorForeground": "#ff1212b3",
//"editorOverviewRuler.findMatchForeground": "#d186167e",
//"editorOverviewRuler.incomingContentForeground": "#1e66f566",
//"editorOverviewRuler.infoForeground": "#1e66f5",
//"editorOverviewRuler.inlineChatInserted": "#40a02b15",
//"editorOverviewRuler.inlineChatRemoved": "#d20f3915",
//"editorOverviewRuler.rangeHighlightForeground": "#007acc99",
//"editorOverviewRuler.selectionHighlightForeground": "#a0a0a0cc",
//"editorOverviewRuler.warningForeground": "#fe640b",
//"editorOverviewRuler.wordHighlightForeground": "#a0a0a0cc",
//"editorOverviewRuler.wordHighlightStrongForeground": "#c0a0c0cc",
//"editorOverviewRuler.wordHighlightTextForeground": "#a0a0a0cc",
//"editorPane.background": "#eff1f5",
//"editorStickyScroll.background": "#eff1f5",
//"editorStickyScroll.shadow": "#dce0e8",
//"editorSuggestWidget.focusHighlightForeground": "#8839ef",
//"editorSuggestWidget.selectedForeground": "#4c4f69",
//"editorSuggestWidgetStatus.foreground": "#4c4f6980",
//"editorUnicodeHighlight.background": "#00000000",
//"editorUnicodeHighlight.border": "#fe640b",
//"editorUnnecessaryCode.opacity": "#00000077",
//"editorWatermark.foreground": "#4c4f69ad",
//"editorWidget.border": "#c8c8c8",
//"extensionButton.background": "#8839ef",
//"extensionButton.foreground": "#dce0e8",
//"extensionButton.hoverBackground": "#9c5af2",
//"git.blame.editorDecorationForeground": "#8c8fa1",
//"gitDecoration.renamedResourceForeground": "#007100",
//"gitlens.decorations.addedForegroundColor": "#40a02b",
//"gitlens.decorations.branchUpToDateForegroundColor": "#4c4f69",
//"gitlens.decorations.copiedForegroundColor": "#007100",
//"gitlens.decorations.deletedForegroundColor": "#d20f39",
//"gitlens.decorations.ignoredForegroundColor": "#9ca0b0",
//"gitlens.decorations.modifiedForegroundColor": "#df8e1d",
//"gitlens.decorations.renamedForegroundColor": "#007100",
//"gitlens.decorations.untrackedForegroundColor": "#40a02b",
//"gitlens.graphMinimapMarkerPullRequestsColor": "#ff8f18",
//"gitlens.graphScrollMarkerPullRequestsColor": "#ff8f18",
//"gitlens.launchpadIndicatorAttentionColor": "#cc9b15",
//"gitlens.launchpadIndicatorAttentionHoverColor": "#cc9b15",
//"gitlens.launchpadIndicatorBlockedColor": "#ad0707",
//"gitlens.launchpadIndicatorBlockedHoverColor": "#ad0707",
//"gitlens.launchpadIndicatorMergeableColor": "#42c954",
//"gitlens.launchpadIndicatorMergeableHoverColor": "#42c954",
//"inlineChat.background": "#e6e9ef",
//"inlineChat.border": "#c8c8c8",
//"inlineChat.foreground": "#4c4f69",
//"inlineChat.shadow": "#e6e9ef80",
//"inlineChatDiff.inserted": "#40a02b0d",
//"inlineChatDiff.removed": "#d20f390d",
//"inlineChatInput.background": "#ccd0da",
//"inlineChatInput.border": "#c8c8c8",
//"inlineChatInput.focusBorder": "#8839ef",
//"inlineChatInput.placeholderForeground": "#4c4f6973",
//"inlineEdit.border": "#00000000",
//"inlineEdit.indicator.background": "#8839ef",
//"inlineEdit.indicator.border": "#00000000",
//"inlineEdit.indicator.foreground": "#dce0e8",
//"inlineEdit.modifiedBackground": "#40a02b0a",
//"inlineEdit.modifiedChangedLineBackground": "#00000000",
//"inlineEdit.modifiedChangedTextBackground": "#40a02b1a",
//"inlineEdit.originalBackground": "#d20f390a",
//"inlineEdit.originalChangedLineBackground": "#00000000",
//"inlineEdit.originalChangedTextBackground": "#d20f391a",
//"inputOption.hoverBackground": "#b8b8b850",
//"interactive.activeCodeBorder": "#8839ef",
//"interactive.inactiveCodeBorder": "#ccd0da",
//"keybindingLabel.background": "#dddddd66",
//"keybindingLabel.border": "#cccccc66",
//"keybindingLabel.bottomBorder": "#bbbbbb66",
//"keybindingLabel.foreground": "#555555",
//"keybindingTable.headerBackground": "#4c4f690a",
//"keybindingTable.rowsBackground": "#4c4f690a",
//"list.deemphasizedForeground": "#8e8e90",
//"list.dropBetweenBackground": "#8839ef",
//"list.errorForeground": "#b01011",
//"list.filterMatchBackground": "#a9daf0",
//"list.filterMatchBorder": "#04a5e533",
//"list.focusHighlightForeground": "#8839ef",
//"list.invalidItemForeground": "#b89500",
//"listFilterWidget.shadow": "#e6e9ef80",
//"markdown.extension.editor.codeSpan.background": "#00000000",
//"markdown.extension.editor.codeSpan.border": "#7c7f934d",
//"markdown.extension.editor.formattingMark.foreground": "#7c7f9366",
//"markdown.extension.editor.trailingSpace.background": "#acb0be99",
//"mergeEditor.change.background": "#9bb95533",
//"mergeEditor.change.word.background": "#9ccc2c66",
//"mergeEditor.changeBase.background": "#ffcccc",
//"mergeEditor.changeBase.word.background": "#ffa3a3",
//"mergeEditor.conflict.handled.minimapOverViewRuler": "#adaca8ee",
//"mergeEditor.conflict.handledFocused.border": "#c1c1c1cc",
//"mergeEditor.conflict.handledUnfocused.border": "#86868649",
//"mergeEditor.conflict.input1.background": "#40a02b29",
//"mergeEditor.conflict.input2.background": "#1e66f529",
//"mergeEditor.conflict.unhandled.minimapOverViewRuler": "#fcba03",
//"mergeEditor.conflict.unhandledFocused.border": "#ffa600",
//"mergeEditor.conflict.unhandledUnfocused.border": "#ffa600",
//"mergeEditor.conflictingLines.background": "#ffea0047",
//"minimap.foregroundOpacity": "#000000",
//"minimap.infoHighlight": "#1e66f5",
//"multiDiffEditor.background": "#eff1f5",
//"multiDiffEditor.border": "#cccccc",
//"multiDiffEditor.headerBackground": "#e6e9ef",
//"notebook.cellBorderColor": "#ccd0da",
//"notebook.cellEditorBackground": "#e6e9ef",
//"notebook.cellInsertionIndicator": "#8839ef",
//"notebook.cellStatusBarItemHoverBackground": "#00000014",
//"notebook.cellToolbarSeparator": "#80808059",
//"notebook.editorBackground": "#eff1f5",
//"notebook.focusedCellBorder": "#8839ef",
//"notebook.focusedEditorBorder": "#8839ef",
//"notebook.inactiveFocusedCellBorder": "#ccd0da",
//"notebook.selectedCellBackground": "#ccd0da",
//"notebook.selectedCellBorder": "#ccd0da",
//"notebook.symbolHighlightBackground": "#fdff0033",
//"notebookEditorOverviewRuler.runningCellForeground": "#40a02b",
//"notebookScrollbarSlider.activeBackground": "#ccd0da66",
//"notebookScrollbarSlider.background": "#acb0be80",
//"notebookScrollbarSlider.hoverBackground": "#9ca0b0",
//"notebookStatusErrorIcon.foreground": "#d20f39",
//"notebookStatusRunningIcon.foreground": "#4c4f69",
//"notebookStatusSuccessIcon.foreground": "#40a02b",
//"panel.dropBorder": "#4c4f69",
//"panelInput.border": "#dddddd",
//"panelSectionHeader.background": "#80808033",
//"panelStickyScroll.background": "#eff1f5",
//"panelStickyScroll.shadow": "#dce0e8",
//"peekViewEditorStickyScroll.background": "#e6e9ef",
//"ports.iconRunningProcessForeground": "#1e66f5",
//"profileBadge.background": "#c4c4c4",
//"profileBadge.foreground": "#333333",
//"profiles.sashBorder": "#acb0be",
//"quickInput.background": "#e6e9ef",
//"quickInput.foreground": "#4c4f69",
//"quickInputList.focusBackground": "#ccd0da",
//"quickInputList.focusForeground": "#4c4f69",
//"quickInputTitle.background": "#0000000f",
//"radio.activeBackground": "#acb0be",
//"radio.activeBorder": "#8839ef",
//"radio.activeForeground": "#4c4f69",
//"radio.inactiveBorder": "#4c4f6933",
//"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": "#bcc0cc",
//"scmGraph.historyItemHoverDefaultLabelForeground": "#4c4f69",
//"scmGraph.historyItemHoverDeletionsForeground": "#ad0707",
//"scmGraph.historyItemHoverLabelForeground": "#dce0e8",
//"scmGraph.historyItemRefColor": "#1e66f5",
//"scmGraph.historyItemRemoteRefColor": "#8839ef",
//"search.resultsInfoForeground": "#4c4f69",
//"searchEditor.findMatchBackground": "#a9daf0a8",
//"searchEditor.findMatchBorder": "#04a5e522",
//"searchEditor.textInputBorder": "#00000000",
//"settings.checkboxBackground": "#bcc0cc",
//"settings.checkboxBorder": "#00000000",
//"settings.checkboxForeground": "#8839ef",
//"settings.dropdownBorder": "#8839ef",
//"settings.dropdownForeground": "#4c4f69",
//"settings.focusedRowBorder": "#8839ef",
//"settings.headerBorder": "#acb0be",
//"settings.numberInputForeground": "#4c4f69",
//"settings.rowHoverBackground": "#ccd0da27",
//"settings.sashBorder": "#acb0be",
//"settings.settingsHeaderHoverForeground": "#4c4f69b3",
//"settings.textInputForeground": "#4c4f69",
//"sideBarStickyScroll.background": "#e6e9ef",
//"sideBarStickyScroll.shadow": "#dce0e8",
//"sideBarTitle.background": "#e6e9ef",
//"sideBySideEditor.horizontalBorder": "#acb0be",
//"sideBySideEditor.verticalBorder": "#acb0be",
//"simpleFindWidget.sashBorder": "#c8c8c8",
//"statusBar.focusBorder": "#4c4f69",
//"statusBarItem.compactHoverBackground": "#ffffff33",
//"statusBarItem.errorHoverBackground": "#acb0be33",
//"statusBarItem.errorHoverForeground": "#4c4f69",
//"statusBarItem.focusBorder": "#4c4f69",
//"statusBarItem.hoverForeground": "#4c4f69",
//"statusBarItem.offlineBackground": "#6c1717",
//"statusBarItem.offlineForeground": "#dce0e8",
//"statusBarItem.offlineHoverBackground": "#acb0be33",
//"statusBarItem.offlineHoverForeground": "#4c4f69",
//"statusBarItem.prominentHoverForeground": "#4c4f69",
//"statusBarItem.remoteHoverBackground": "#acb0be33",
//"statusBarItem.remoteHoverForeground": "#4c4f69",
//"statusBarItem.warningHoverBackground": "#acb0be33",
//"statusBarItem.warningHoverForeground": "#4c4f69",
//"tab.dragAndDropBorder": "#8839ef",
//"tab.selectedBackground": "#eff1f5",
//"tab.selectedBorderTop": "#8839ef",
//"tab.selectedForeground": "#8839ef",
//"tab.unfocusedActiveForeground": "#8839efb3",
//"tab.unfocusedActiveModifiedBorder": "#df8e1db3",
//"tab.unfocusedHoverBackground": "#ffffffb3",
//"tab.unfocusedHoverBorder": "#00000000",
//"tab.unfocusedHoverForeground": "#8839ef80",
//"tab.unfocusedInactiveForeground": "#9ca0b080",
//"tab.unfocusedInactiveModifiedBorder": "#df8e1d27",
//"terminal.findMatchBackground": "#e6adbd",
//"terminal.findMatchHighlightBackground": "#a9daf0",
//"terminal.hoverHighlightBackground": "#04a5e520",
//"terminal.initialHintForeground": "#00000077",
//"terminalCommandGuide.foreground": "#ccd0da",
//"terminalOverviewRuler.border": "#4c4f6912",
//"terminalOverviewRuler.cursorForeground": "#a0a0a0cc",
//"terminalOverviewRuler.findMatchForeground": "#d186167e",
//"terminalStickyScrollHover.background": "#f0f0f0",
//"testing.coverCountBadgeBackground": "#bcc0cc",
//"testing.coverCountBadgeForeground": "#4c4f69",
//"testing.coveredBackground": "#40a02b1a",
//"testing.coveredBorder": "#40a02b14",
//"testing.coveredGutterBackground": "#40a02b10",
//"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": "#4c4f6980",
//"testing.messagePeekBorder": "#1e66f5",
//"testing.messagePeekHeaderBackground": "#1e66f51a",
//"testing.peekBorder": "#d20f39",
//"testing.peekHeaderBackground": "#d20f391a",
//"testing.runAction": "#73c991",
//"testing.uncoveredBackground": "#d20f391a",
//"testing.uncoveredBorder": "#d20f3914",
//"testing.uncoveredBranchBackground": "#e9c2ce",
//"testing.uncoveredGutterBackground": "#d20f3927",
//"textPreformat.background": "#0000001a",
//"toolbar.activeBackground": "#a6a6a650",
//"toolbar.hoverBackground": "#b8b8b850",
//"tree.tableColumnsBorder": "#61616120",
//"tree.tableOddRowsBackground": "#4c4f690a",
//"walkthrough.stepTitle.foreground": "#000000",
//"welcomePage.tileBorder": "#0000001a",
//"welcomePage.tileHoverBackground": "#c9d0dd",
//"activityBarTop.activeBackground": null,
//"activityBarTop.background": null,
//"contrastActiveBorder": null,
//"contrastBorder": null,
//"diffEditor.insertedTextBorder": null,
//"diffEditor.removedTextBorder": null,
//"diffEditorGutter.insertedLineBackground": null,
//"diffEditorGutter.removedLineBackground": null,
//"editor.findMatchForeground": null,
//"editor.findMatchHighlightForeground": null,
//"editor.selectionForeground": null,
//"editor.snippetFinalTabstopHighlightBackground": null,
//"editor.snippetTabstopHighlightBorder": null,
//"editor.symbolHighlightBorder": null,
//"editor.wordHighlightBorder": null,
//"editor.wordHighlightStrongBorder": null,
//"editor.wordHighlightTextBorder": null,
//"editorGhostText.background": null,
//"editorGhostText.border": null,
//"editorGroup.dropIntoPromptBorder": null,
//"editorGroup.focusedEmptyBorder": null,
//"editorGroupHeader.border": null,
//"editorGroupHeader.tabsBorder": null,
//"editorHint.border": null,
//"editorLineNumber.dimmedForeground": null,
//"editorStickyScroll.border": null,
//"editorSuggestWidget.selectedIconForeground": null,
//"editorUnnecessaryCode.border": null,
//"list.activeSelectionIconForeground": null,
//"list.focusAndSelectionOutline": null,
//"list.inactiveFocusBackground": null,
//"list.inactiveFocusOutline": null,
//"list.inactiveSelectionIconForeground": null,
//"menubar.selectionBorder": null,
//"merge.border": null,
//"notebook.cellHoverBackground": null,
//"notebook.focusedCellBackground": null,
//"notebook.inactiveSelectedCellBorder": null,
//"notebook.outputContainerBackgroundColor": null,
//"notebook.outputContainerBorderColor": null,
//"outputView.background": null,
//"outputViewStickyScroll.background": null,
//"panelSectionHeader.border": null,
//"panelSectionHeader.foreground": null,
//"panelStickyScroll.border": null,
//"panelTitle.border": null,
//"quickInput.list.focusBackground": null,
//"quickInputList.focusIconForeground": null,
//"radio.inactiveBackground": null,
//"radio.inactiveForeground": null,
//"sideBarActivityBarTop.border": null,
//"sideBarSectionHeader.border": null,
//"sideBarStickyScroll.border": null,
//"sideBarTitle.border": null,
//"terminal.background": null,
//"terminal.findMatchBorder": null,
//"terminal.findMatchHighlightBorder": null,
//"terminal.selectionForeground": 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": [
"text",
"source",
"variable.other.readwrite",
"punctuation.definition.variable"
],
"settings": {
"foreground": "#4C4F69"
}
},
{
"scope": "punctuation",
"settings": {
"foreground": "#7C7F93",
"fontStyle": ""
}
},
{
"scope": [
"comment",
"punctuation.definition.comment"
],
"settings": {
"foreground": "#9CA0B0",
"fontStyle": "italic"
}
},
{
"scope": [
"string",
"punctuation.definition.string"
],
"settings": {
"foreground": "#40A02B"
}
},
{
"scope": "constant.character.escape",
"settings": {
"foreground": "#EA76CB"
}
},
{
"scope": [
"constant.numeric",
"variable.other.constant",
"entity.name.constant",
"constant.language.boolean",
"constant.language.false",
"constant.language.true",
"keyword.other.unit.user-defined",
"keyword.other.unit.suffix.floating-point"
],
"settings": {
"foreground": "#FE640B"
}
},
{
"scope": [
"keyword",
"keyword.operator.word",
"keyword.operator.new",
"variable.language.super",
"support.type.primitive",
"storage.type",
"storage.modifier",
"punctuation.definition.keyword"
],
"settings": {
"foreground": "#8839EF",
"fontStyle": ""
}
},
{
"scope": "entity.name.tag.documentation",
"settings": {
"foreground": "#8839EF"
}
},
{
"scope": [
"keyword.operator",
"punctuation.accessor",