-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.json
2865 lines (2865 loc) · 143 KB
/
theme.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"github": {
"base": "vs",
"inherit": true,
"rules": [],
"colors": {
"focusBorder": "#0366d6",
"foreground": "#24292e",
"descriptionForeground": "#6a737d",
"errorForeground": "#cb2431",
"textLink.foreground": "#0366d6",
"textLink.activeForeground": "#0366d6",
"textBlockQuote.background": "#f6f8fa",
"textBlockQuote.border": "#dfe2e5",
"textCodeBlock.background": "#1b1f230d",
"textPreformat.foreground": "#586069",
"textSeparator.foreground": "#eaecef",
"button.background": "#2ea44f",
"button.foreground": "#ffffff",
"button.hoverBackground": "#2c974b",
"button.secondaryBackground": "#eaecef",
"button.secondaryForeground": "#24292e",
"button.secondaryHoverBackground": "#f3f4f6",
"checkbox.background": "#f6f8fa",
"checkbox.border": "#e1e4e8",
"dropdown.background": "#ffffff",
"dropdown.border": "#e1e4e8",
"dropdown.foreground": "#24292e",
"dropdown.listBackground": "#ffffff",
"input.background": "#ffffff",
"input.border": "#e1e4e8",
"input.foreground": "#24292e",
"input.placeholderForeground": "#6a737d",
"badge.foreground": "#005cc5",
"badge.background": "#dbedff",
"progressBar.background": "#2188ff",
"titleBar.activeForeground": "#586069",
"titleBar.activeBackground": "#ffffff",
"titleBar.inactiveForeground": "#6a737d",
"titleBar.inactiveBackground": "#f6f8fa",
"titleBar.border": "#e1e4e8",
"activityBar.foreground": "#24292e",
"activityBar.inactiveForeground": "#6a737d",
"activityBar.background": "#ffffff",
"activityBarBadge.foreground": "#ffffff",
"activityBarBadge.background": "#2188ff",
"activityBar.activeBorder": "#f9826c",
"activityBar.border": "#e1e4e8",
"sideBar.foreground": "#24292e",
"sideBar.background": "#f6f8fa",
"sideBar.border": "#e1e4e8",
"sideBarTitle.foreground": "#24292e",
"sideBarSectionHeader.foreground": "#24292e",
"sideBarSectionHeader.background": "#f6f8fa",
"sideBarSectionHeader.border": "#e1e4e8",
"list.hoverForeground": "#24292e",
"list.inactiveSelectionForeground": "#24292e",
"list.activeSelectionForeground": "#24292e",
"list.hoverBackground": "#ebf0f4",
"list.inactiveSelectionBackground": "#e8eaed",
"list.activeSelectionBackground": "#e2e5e9",
"list.focusForeground": "#05264c",
"list.focusBackground": "#cce5ff",
"list.inactiveFocusBackground": "#dbedff",
"list.highlightForeground": "#0366d6",
"tree.indentGuidesStroke": "#eaecef",
"notificationCenterHeader.foreground": "#6a737d",
"notificationCenterHeader.background": "#e1e4e8",
"notifications.foreground": "#586069",
"notifications.background": "#fafbfc",
"notifications.border": "#e1e4e8",
"notificationsErrorIcon.foreground": "#d73a49",
"notificationsWarningIcon.foreground": "#e36209",
"notificationsInfoIcon.foreground": "#005cc5",
"pickerGroup.border": "#e1e4e8",
"pickerGroup.foreground": "#586069",
"quickInput.background": "#fafbfc",
"quickInput.foreground": "#24292e",
"statusBar.foreground": "#586069",
"statusBar.background": "#ffffff",
"statusBar.border": "#e1e4e8",
"statusBar.noFolderBackground": "#ffffff",
"statusBar.debuggingBackground": "#d73a49",
"statusBar.debuggingForeground": "#ffffff",
"statusBarItem.prominentBackground": "#f6f8fa",
"editorGroupHeader.tabsBackground": "#f6f8fa",
"editorGroupHeader.tabsBorder": "#e1e4e8",
"editorGroup.border": "#e1e4e8",
"tab.activeForeground": "#24292e",
"tab.inactiveForeground": "#6a737d",
"tab.inactiveBackground": "#f6f8fa",
"tab.activeBackground": "#ffffff",
"tab.hoverBackground": "#ffffff",
"tab.unfocusedHoverBackground": "#f6f8fa",
"tab.border": "#e1e4e8",
"tab.unfocusedActiveBorderTop": "#e1e4e8",
"tab.activeBorder": "#ffffff",
"tab.unfocusedActiveBorder": "#ffffff",
"tab.activeBorderTop": "#f9826c",
"breadcrumb.foreground": "#6a737d",
"breadcrumb.focusForeground": "#24292e",
"breadcrumb.activeSelectionForeground": "#586069",
"breadcrumbPicker.background": "#ffffff",
"editor.foreground": "#24292e",
"editor.background": "#ffffff",
"editorWidget.background": "#ffffff",
"editor.foldBackground": "#959da51a",
"editor.lineHighlightBackground": "#fafbfc",
"editorLineNumber.foreground": "#959da5",
"editorLineNumber.activeForeground": "#24292e",
"editorIndentGuide.background": "#eaecef",
"editorIndentGuide.activeBackground": "#e1e4e8",
"editorWhitespace.foreground": "#d1d5da",
"editorCursor.foreground": "#044289",
"editor.findMatchBackground": "#ffdf5d",
"editor.findMatchHighlightBackground": "#ffdf5d66",
"editor.linkedEditingBackground": "#0366d611",
"editor.inactiveSelectionBackground": "#0366d611",
"editor.selectionBackground": "#0366d625",
"editor.selectionHighlightBackground": "#34d05840",
"editor.selectionHighlightBorder": "#34d05800",
"editor.wordHighlightBackground": "#34d05800",
"editor.wordHighlightStrongBackground": "#34d05800",
"editor.wordHighlightBorder": "#24943e99",
"editor.wordHighlightStrongBorder": "#24943e50",
"editorBracketMatch.background": "#34d05840",
"editorBracketMatch.border": "#34d05800",
"editorGutter.modifiedBackground": "#f9c513",
"editorGutter.addedBackground": "#34d058",
"editorGutter.deletedBackground": "#d73a49",
"diffEditor.insertedTextBackground": "#85e89d33",
"diffEditor.removedTextBackground": "#f9758326",
"scrollbar.shadow": "#6a737d33",
"scrollbarSlider.background": "#959da533",
"scrollbarSlider.hoverBackground": "#959da544",
"scrollbarSlider.activeBackground": "#959da588",
"editorOverviewRuler.border": "#ffffff",
"panel.background": "#f6f8fa",
"panel.border": "#e1e4e8",
"panelTitle.activeBorder": "#f9826c",
"panelTitle.activeForeground": "#24292e",
"panelTitle.inactiveForeground": "#6a737d",
"panelInput.border": "#e1e4e8",
"terminal.foreground": "#586069",
"terminal.ansiBlack": "#24292e",
"terminal.ansiRed": "#d73a49",
"terminal.ansiGreen": "#22863a",
"terminal.ansiYellow": "#b08800",
"terminal.ansiBlue": "#0366d6",
"terminal.ansiMagenta": "#6f42c1",
"terminal.ansiCyan": "#1b7c83",
"terminal.ansiWhite": "#6a737d",
"terminal.ansiBrightBlack": "#586069",
"terminal.ansiBrightRed": "#cb2431",
"terminal.ansiBrightGreen": "#28a745",
"terminal.ansiBrightYellow": "#dbab09",
"terminal.ansiBrightBlue": "#2188ff",
"terminal.ansiBrightMagenta": "#8a63d2",
"terminal.ansiBrightCyan": "#3192aa",
"terminal.ansiBrightWhite": "#959da5",
"gitDecoration.addedResourceForeground": "#22863a",
"gitDecoration.modifiedResourceForeground": "#b08800",
"gitDecoration.deletedResourceForeground": "#cb2431",
"gitDecoration.untrackedResourceForeground": "#22863a",
"gitDecoration.ignoredResourceForeground": "#959da5",
"gitDecoration.conflictingResourceForeground": "#b08800",
"gitDecoration.submoduleResourceForeground": "#586069",
"debugToolBar.background": "#ffffff",
"editor.stackFrameHighlightBackground": "#ffd33d33",
"editor.focusedStackFrameHighlightBackground": "#28a74525",
"settings.headerForeground": "#586069",
"settings.modifiedItemIndicator": "#f9c513",
"welcomePage.buttonBackground": "#fafbfc",
"welcomePage.buttonHoverBackground": "#f3f4f6"
}
},
"github-dark": {
"base": "vs-dark",
"inherit": true,
"rules": [],
"colors": {
"focusBorder": "#388bfd",
"foreground": "#c9d1d9",
"descriptionForeground": "#8b949e",
"errorForeground": "#f85149",
"textLink.foreground": "#58a6ff",
"textLink.activeForeground": "#58a6ff",
"textBlockQuote.background": "#090c10",
"textBlockQuote.border": "#3b434b",
"textCodeBlock.background": "#f0f6fc26",
"textPreformat.foreground": "#8b949e",
"textSeparator.foreground": "#21262d",
"button.background": "#238636",
"button.foreground": "#ffffff",
"button.hoverBackground": "#2ea043",
"button.secondaryBackground": "#292e34",
"button.secondaryForeground": "#c9d1d9",
"button.secondaryHoverBackground": "#30363d",
"checkbox.background": "#161b22",
"checkbox.border": "#30363d",
"dropdown.background": "#1c2128",
"dropdown.border": "#30363d",
"dropdown.foreground": "#c9d1d9",
"dropdown.listBackground": "#1c2128",
"input.background": "#0d1117",
"input.border": "#21262d",
"input.foreground": "#c9d1d9",
"input.placeholderForeground": "#484f58",
"badge.foreground": "#79c0ff",
"badge.background": "#0d419d",
"progressBar.background": "#1f6feb",
"titleBar.activeForeground": "#8b949e",
"titleBar.activeBackground": "#0d1117",
"titleBar.inactiveForeground": "#8b949e",
"titleBar.inactiveBackground": "#090c10",
"titleBar.border": "#30363d",
"activityBar.foreground": "#c9d1d9",
"activityBar.inactiveForeground": "#8b949e",
"activityBar.background": "#0d1117",
"activityBarBadge.foreground": "#f0f6fc",
"activityBarBadge.background": "#1f6feb",
"activityBar.activeBorder": "#f78166",
"activityBar.border": "#30363d",
"sideBar.foreground": "#c9d1d9",
"sideBar.background": "#090c10",
"sideBar.border": "#30363d",
"sideBarTitle.foreground": "#c9d1d9",
"sideBarSectionHeader.foreground": "#c9d1d9",
"sideBarSectionHeader.background": "#090c10",
"sideBarSectionHeader.border": "#30363d",
"list.hoverForeground": "#c9d1d9",
"list.inactiveSelectionForeground": "#c9d1d9",
"list.activeSelectionForeground": "#c9d1d9",
"list.hoverBackground": "#161b22",
"list.inactiveSelectionBackground": "#161b22",
"list.activeSelectionBackground": "#21262d",
"list.focusForeground": "#f0f6fc",
"list.focusBackground": "#21262d",
"list.inactiveFocusBackground": "#161b22",
"list.highlightForeground": "#388bfd",
"tree.indentGuidesStroke": "#21262d",
"notificationCenterHeader.foreground": "#6e7681",
"notificationCenterHeader.background": "#0d1117",
"notifications.foreground": "#8b949e",
"notifications.background": "#161b22",
"notifications.border": "#30363d",
"notificationsErrorIcon.foreground": "#f85149",
"notificationsWarningIcon.foreground": "#f0883e",
"notificationsInfoIcon.foreground": "#58a6ff",
"pickerGroup.border": "#21262d",
"pickerGroup.foreground": "#8b949e",
"quickInput.background": "#0d1117",
"quickInput.foreground": "#c9d1d9",
"statusBar.foreground": "#8b949e",
"statusBar.background": "#0d1117",
"statusBar.border": "#30363d",
"statusBar.noFolderBackground": "#0d1117",
"statusBar.debuggingBackground": "#da3633",
"statusBar.debuggingForeground": "#f0f6fc",
"statusBarItem.prominentBackground": "#161b22",
"editorGroupHeader.tabsBackground": "#090c10",
"editorGroupHeader.tabsBorder": "#30363d",
"editorGroup.border": "#30363d",
"tab.activeForeground": "#c9d1d9",
"tab.inactiveForeground": "#8b949e",
"tab.inactiveBackground": "#090c10",
"tab.activeBackground": "#0d1117",
"tab.hoverBackground": "#0d1117",
"tab.unfocusedHoverBackground": "#161b22",
"tab.border": "#30363d",
"tab.unfocusedActiveBorderTop": "#30363d",
"tab.activeBorder": "#0d1117",
"tab.unfocusedActiveBorder": "#0d1117",
"tab.activeBorderTop": "#f78166",
"breadcrumb.foreground": "#8b949e",
"breadcrumb.focusForeground": "#c9d1d9",
"breadcrumb.activeSelectionForeground": "#8b949e",
"breadcrumbPicker.background": "#1c2128",
"editor.foreground": "#c9d1d9",
"editor.background": "#0d1117",
"editorWidget.background": "#1c2128",
"editor.foldBackground": "#6e76811a",
"editor.lineHighlightBackground": "#161b22",
"editorLineNumber.foreground": "#8b949e",
"editorLineNumber.activeForeground": "#c9d1d9",
"editorIndentGuide.background": "#21262d",
"editorIndentGuide.activeBackground": "#30363d",
"editorWhitespace.foreground": "#484f58",
"editorCursor.foreground": "#79c0ff",
"editor.findMatchBackground": "#ffd33d44",
"editor.findMatchHighlightBackground": "#ffd33d22",
"editor.linkedEditingBackground": "#3392FF22",
"editor.inactiveSelectionBackground": "#3392FF22",
"editor.selectionBackground": "#3392FF44",
"editor.selectionHighlightBackground": "#17E5E633",
"editor.selectionHighlightBorder": "#17E5E600",
"editor.wordHighlightBackground": "#17E5E600",
"editor.wordHighlightStrongBackground": "#17E5E600",
"editor.wordHighlightBorder": "#17E5E699",
"editor.wordHighlightStrongBorder": "#17E5E666",
"editorBracketMatch.background": "#17E5E650",
"editorBracketMatch.border": "#17E5E600",
"editorGutter.modifiedBackground": "#9e6a03",
"editorGutter.addedBackground": "#196c2e",
"editorGutter.deletedBackground": "#b62324",
"diffEditor.insertedTextBackground": "#2ea04333",
"diffEditor.removedTextBackground": "#da363333",
"scrollbar.shadow": "#0008",
"scrollbarSlider.background": "#484F5833",
"scrollbarSlider.hoverBackground": "#484F5844",
"scrollbarSlider.activeBackground": "#484F5888",
"editorOverviewRuler.border": "#010409",
"panel.background": "#090c10",
"panel.border": "#30363d",
"panelTitle.activeBorder": "#f78166",
"panelTitle.activeForeground": "#c9d1d9",
"panelTitle.inactiveForeground": "#8b949e",
"panelInput.border": "#30363d",
"terminal.foreground": "#8b949e",
"terminal.ansiBlack": "#484f58",
"terminal.ansiRed": "#ff7b72",
"terminal.ansiGreen": "#3fb950",
"terminal.ansiYellow": "#d29922",
"terminal.ansiBlue": "#58a6ff",
"terminal.ansiMagenta": "#bc8cff",
"terminal.ansiCyan": "#39c5cf",
"terminal.ansiWhite": "#b1bac4",
"terminal.ansiBrightBlack": "#6e7681",
"terminal.ansiBrightRed": "#ffa198",
"terminal.ansiBrightGreen": "#56d364",
"terminal.ansiBrightYellow": "#e3b341",
"terminal.ansiBrightBlue": "#79c0ff",
"terminal.ansiBrightMagenta": "#d2a8ff",
"terminal.ansiBrightCyan": "#56d4dd",
"terminal.ansiBrightWhite": "#f0f6fc",
"gitDecoration.addedResourceForeground": "#56d364",
"gitDecoration.modifiedResourceForeground": "#e3b341",
"gitDecoration.deletedResourceForeground": "#f85149",
"gitDecoration.untrackedResourceForeground": "#56d364",
"gitDecoration.ignoredResourceForeground": "#484f58",
"gitDecoration.conflictingResourceForeground": "#e3b341",
"gitDecoration.submoduleResourceForeground": "#8b949e",
"debugToolBar.background": "#1c2128",
"editor.stackFrameHighlightBackground": "#D2992225",
"editor.focusedStackFrameHighlightBackground": "#3FB95025",
"peekViewEditor.matchHighlightBackground": "#ffd33d33",
"peekViewResult.matchHighlightBackground": "#ffd33d33",
"peekViewEditor.background": "#0d111788",
"peekViewResult.background": "#0d1117",
"settings.headerForeground": "#8b949e",
"settings.modifiedItemIndicator": "#9e6a03",
"welcomePage.buttonBackground": "#21262d",
"welcomePage.buttonHoverBackground": "#30363d"
}
},
"material-design": {
"base": "vs-dark",
"inherit": true,
"rules": [],
"colors": {
"focusBorder": "#FFFFFF00",
"foreground": "#EEFFFF",
"button.background": "#80CBC420",
"button.foreground": "#ffffff",
"dropdown.background": "#263238",
"input.background": "#303C41",
"inputOption.activeBorder": "#EEFFFF30",
"list.activeSelectionBackground": "#263238",
"list.activeSelectionForeground": "#80CBC4",
"list.dropBackground": "#f0717880",
"list.focusBackground": "#EEFFFF20",
"list.focusForeground": "#EEFFFF",
"list.highlightForeground": "#80CBC4",
"list.hoverBackground": "#263238",
"list.inactiveSelectionBackground": "#00000030",
"activityBar.background": "#263238",
"activityBar.dropBackground": "#f0717880",
"activityBarBadge.background": "#80CBC4",
"activityBarBadge.foreground": "#000000",
"badge.background": "#00000030",
"badge.foreground": "#546E7A",
"sideBar.background": "#263238",
"sideBarSectionHeader.background": "#263238",
"editorGroup.dropBackground": "#f0717880",
"editorGroup.focusedEmptyBorder": "#f07178",
"editorGroupHeader.tabsBackground": "#263238",
"tab.border": "#263238",
"tab.activeBorder": "#80CBC4",
"tab.inactiveBackground": "#263238",
"tab.activeModifiedBorder": "#607a86",
"tab.inactiveModifiedBorder": "#904348",
"tab.unfocusedActiveModifiedBorder": "#c05a60",
"tab.unfocusedInactiveModifiedBorder": "#904348",
"editor.background": "#263238",
"editor.foreground": "#EEFFFF",
"editorLineNumber.foreground": "#37474F",
"editorLineNumber.activeForeground": "#607a86",
"editorCursor.foreground": "#FFCC00",
"editor.selectionBackground": "#80CBC420",
"editor.selectionHighlightBackground": "#FFCC0020",
"editor.wordHighlightBackground": "#ff9cac30",
"editor.wordHighlightStrongBackground": "#C3E88D30",
"editor.findMatchHighlight": "#EEFFFF",
"editor.findRangeHighlightBackground": "#FFCB6B30",
"editor.lineHighlightBorder": "#00000000",
"editor.rangeHighlightBackground": "#FFFFFF0d",
"editorWhitespace.foreground": "#EEFFFF40",
"editorWidget.background": "#263238",
"editorHoverWidget.background": "#263238",
"editorMarkerNavigation.background": "#EEFFFF05",
"peekView.border": "#00000030",
"peekViewEditor.background": "#EEFFFF05",
"peekViewResult.background": "#EEFFFF05",
"peekViewTitle.background": "#EEFFFF05",
"panel.background": "#263238",
"panel.border": "#26323860",
"panelTitle.activeBorder": "#80CBC4",
"panelTitle.inactiveForeground": "#EEFFFF",
"statusBar.background": "#263238",
"statusBar.debuggingBackground": "#C792EA",
"statusBar.debuggingForeground": "#ffffff",
"statusBar.noFolderBackground": "#263238",
"statusBarItem.activeBackground": "#f0717880",
"statusBarItem.hoverBackground": "#546E7A20",
"statusBarItem.remoteBackground": "#80CBC4",
"statusBarItem.remoteForeground": "#000000",
"titleBar.activeBackground": "#263238",
"pickerGroup.border": "#FFFFFF1a",
"terminal.ansiBlack": "#000000",
"terminal.ansiBlue": "#82AAFF",
"terminal.ansiBrightBlack": "#546E7A",
"terminal.ansiBrightBlue": "#82AAFF",
"terminal.ansiBrightCyan": "#89DDFF",
"terminal.ansiBrightGreen": "#C3E88D",
"terminal.ansiBrightMagenta": "#C792EA",
"terminal.ansiBrightRed": "#f07178",
"terminal.ansiBrightWhite": "#ffffff",
"terminal.ansiBrightYellow": "#FFCB6B",
"terminal.ansiCyan": "#89DDFF",
"terminal.ansiGreen": "#C3E88D",
"terminal.ansiMagenta": "#C792EA",
"terminal.ansiRed": "#f07178",
"terminal.ansiWhite": "#ffffff",
"terminal.ansiYellow": "#FFCB6B",
"debugToolBar.background": "#263238",
"debugConsole.errorForeground": "#f07178",
"debugConsole.infoForeground": "#89DDFF",
"debugConsole.warningForeground": "#FFCB6B",
"selection.background": "#00000080",
"editorRuler.foreground": "#37474F",
"widget.shadow": "#00000030",
"scrollbar.shadow": "#00000030",
"editorLink.activeForeground": "#EEFFFF",
"progressBar.background": "#80CBC4",
"pickerGroup.foreground": "#80CBC4",
"tree.indentGuidesStroke": "#37474F",
"terminalCursor.foreground": "#FFCB6B",
"terminalCursor.background": "#000000",
"inputOption.activeBackground": "#EEFFFF30",
"textLink.foreground": "#80CBC4",
"textLink.activeForeground": "#EEFFFF",
"sideBar.foreground": "#607a86",
"sideBar.border": "#26323860",
"sideBarTitle.foreground": "#EEFFFF",
"sideBarSectionHeader.border": "#26323860",
"panel.dropBackground": "#EEFFFF",
"panelTitle.activeForeground": "#FFFFFF",
"editor.lineHighlightBackground": "#00000050",
"editor.findMatchBackground": "#000000",
"editor.findMatchHighlightBackground": "#00000050",
"editor.findMatchBorder": "#80CBC4",
"editor.findMatchHighlightBorder": "#ffffff30",
"editorIndentGuide.background": "#37474F70",
"editorIndentGuide.activeBackground": "#37474F",
"editorGroup.border": "#00000030",
"editorGutter.modifiedBackground": "#82AAFF60",
"editorGutter.addedBackground": "#C3E88D60",
"editorGutter.deletedBackground": "#f0717860",
"activityBar.border": "#26323860",
"activityBar.foreground": "#EEFFFF",
"activityBar.activeBorder": "#80CBC4",
"extensionBadge.remoteForeground": "#EEFFFF",
"scrollbarSlider.background": "#EEFFFF20",
"scrollbarSlider.hoverBackground": "#EEFFFF10",
"scrollbarSlider.activeBackground": "#80CBC4",
"tab.unfocusedActiveBorder": "#546E7A",
"tab.activeForeground": "#FFFFFF",
"tab.inactiveForeground": "#607a86",
"tab.activeBackground": "#263238",
"tab.unfocusedActiveForeground": "#EEFFFF",
"editorWidget.resizeBorder": "#80CBC4",
"editorWidget.border": "#80CBC4",
"statusBar.border": "#26323860",
"statusBar.foreground": "#546E7A",
"editorBracketMatch.border": "#FFCC0050",
"editorBracketMatch.background": "#263238",
"editorOverviewRuler.findMatchForeground": "#80CBC4",
"editorOverviewRuler.border": "#263238",
"editorOverviewRuler.errorForeground": "#f0717840",
"editorOverviewRuler.infoForeground": "#82AAFF40",
"editorOverviewRuler.warningForeground": "#FFCB6B40",
"editorInfo.foreground": "#82AAFF70",
"editorWarning.foreground": "#FFCB6B70",
"editorError.foreground": "#f0717870",
"editorHoverWidget.border": "#FFFFFF10",
"titleBar.activeForeground": "#EEFFFF",
"titleBar.inactiveBackground": "#263238",
"titleBar.inactiveForeground": "#607a86",
"titleBar.border": "#26323860",
"input.foreground": "#EEFFFF",
"input.placeholderForeground": "#EEFFFF60",
"input.border": "#FFFFFF10",
"inputValidation.errorBorder": "#f07178",
"inputValidation.infoBorder": "#82AAFF",
"inputValidation.warningBorder": "#FFCB6B",
"dropdown.border": "#FFFFFF10",
"quickInput.background": "#263238",
"quickInput.foreground": "#607a86",
"list.hoverForeground": "#FFFFFF",
"list.inactiveSelectionForeground": "#80CBC4",
"quickInput.list.focusBackground": "#EEFFFF20",
"editorSuggestWidget.background": "#263238",
"editorSuggestWidget.foreground": "#EEFFFF",
"editorSuggestWidget.highlightForeground": "#80CBC4",
"editorSuggestWidget.selectedBackground": "#00000050",
"editorSuggestWidget.border": "#FFFFFF10",
"diffEditor.insertedTextBackground": "#89DDFF20",
"diffEditor.removedTextBackground": "#ff9cac20",
"notifications.background": "#263238",
"notifications.foreground": "#EEFFFF",
"notificationLink.foreground": "#80CBC4",
"extensionButton.prominentBackground": "#C3E88D90",
"extensionButton.prominentHoverBackground": "#C3E88D",
"extensionButton.prominentForeground": "#000000",
"peekViewEditorGutter.background": "#EEFFFF05",
"peekViewTitleDescription.foreground": "#EEFFFF60",
"peekViewResult.matchHighlightBackground": "#80CBC420",
"peekViewEditor.matchHighlightBackground": "#80CBC420",
"peekViewResult.selectionBackground": "#607a8670",
"gitDecoration.deletedResourceForeground": "#f0717890",
"gitDecoration.conflictingResourceForeground": "#FFCB6B90",
"gitDecoration.modifiedResourceForeground": "#82AAFF90",
"gitDecoration.untrackedResourceForeground": "#C3E88D90",
"gitDecoration.ignoredResourceForeground": "#607a8690",
"breadcrumb.background": "#263238",
"breadcrumb.foreground": "#607a86",
"breadcrumb.focusForeground": "#EEFFFF",
"breadcrumb.activeSelectionForeground": "#80CBC4",
"breadcrumbPicker.background": "#263238",
"menu.background": "#263238",
"menu.foreground": "#EEFFFF",
"menu.selectionBackground": "#00000050",
"menu.selectionForeground": "#80CBC4",
"menu.selectionBorder": "#00000030",
"menu.separatorBackground": "#EEFFFF",
"menubar.selectionBackground": "#00000030",
"menubar.selectionForeground": "#80CBC4",
"menubar.selectionBorder": "#00000030",
"settings.dropdownForeground": "#EEFFFF",
"settings.dropdownBackground": "#263238",
"settings.numberInputForeground": "#EEFFFF",
"settings.numberInputBackground": "#263238",
"settings.textInputForeground": "#EEFFFF",
"settings.textInputBackground": "#263238",
"settings.headerForeground": "#80CBC4",
"settings.modifiedItemIndicator": "#80CBC4",
"settings.checkboxBackground": "#263238",
"settings.checkboxForeground": "#EEFFFF",
"listFilterWidget.background": "#00000030",
"listFilterWidget.outline": "#00000030",
"listFilterWidget.noMatchesOutline": "#00000030"
}
},
"monokai-pro": {
"base": "vs-dark",
"inherit": true,
"rules": [],
"colors": {
"focusBorder": "#727072",
"foreground": "#fcfcfa",
"widget.shadow": "#19181a",
"selection.background": "#c1c0c026",
"descriptionForeground": "#939293",
"errorForeground": "#ff6188",
"textBlockQuote.background": "#403e41",
"textBlockQuote.border": "#403e41",
"textCodeBlock.background": "#403e41",
"textLink.activeForeground": "#fcfcfa",
"textLink.foreground": "#ffd866",
"textPreformat.foreground": "#fcfcfa",
"textSeparator.foreground": "#727072",
"button.background": "#403e41",
"button.foreground": "#939293",
"button.hoverBackground": "#2d2a2e",
"dropdown.background": "#2d2a2e",
"dropdown.listBackground": "#403e41",
"dropdown.border": "#2d2a2e",
"dropdown.foreground": "#939293",
"input.background": "#403e41",
"input.border": "#403e41",
"input.foreground": "#fcfcfa",
"input.placeholderForeground": "#727072",
"inputOption.activeBackground": "#5b595c",
"inputOption.activeBorder": "#5b595c",
"inputValidation.errorBackground": "#403e41",
"inputValidation.errorForeground": "#ff6188",
"inputValidation.errorBorder": "#ff6188",
"inputValidation.infoBackground": "#403e41",
"inputValidation.infoForeground": "#78dce8",
"inputValidation.infoBorder": "#78dce8",
"inputValidation.warningBackground": "#403e41",
"inputValidation.warningForeground": "#fc9867",
"inputValidation.warningBorder": "#fc9867",
"scrollbar.shadow": "#2d2a2e",
"scrollbarSlider.activeBackground": "#fcfcfa12",
"scrollbarSlider.background": "#fcfcfa12",
"scrollbarSlider.hoverBackground": "#fcfcfa12",
"badge.foreground": "#2d2a2e",
"badge.background": "#ffd866",
"progressBar.background": "#403e41",
"list.activeSelectionBackground": "#fcfcfa0c",
"list.activeSelectionForeground": "#ffd866",
"list.errorForeground": "#ff6188",
"list.warningForeground": "#fc9867",
"list.dropBackground": "#221f22bf",
"list.focusBackground": "#2d2a2e",
"list.focusForeground": "#fcfcfa",
"list.highlightForeground": "#fcfcfa",
"list.hoverBackground": "#fcfcfa0c",
"list.hoverForeground": "#fcfcfa",
"list.inactiveSelectionBackground": "#c1c0c00c",
"list.inactiveSelectionForeground": "#ffd866",
"list.inactiveFocusBackground": "#2d2a2e",
"list.invalidItemForeground": "#ff6188",
"listFilterWidget.background": "#2d2a2e",
"listFilterWidget.outline": "#2d2a2e",
"listFilterWidget.noMatchesOutline": "#ff6188",
"minimap.errorHighlight": "#ff6188",
"minimap.warningHighlight": "#fc9867",
"minimapGutter.addedBackground": "#a9dc76",
"minimapGutter.modifiedBackground": "#ffd866",
"minimapGutter.deletedBackground": "#ff6188",
"activityBar.background": "#19181a",
"activityBar.dropBackground": "#221f22bf",
"activityBar.foreground": "#c1c0c0",
"activityBar.inactiveForeground": "#5b595c",
"activityBar.border": "#19181a",
"activityBarBadge.background": "#ffd866",
"activityBarBadge.foreground": "#2d2a2e",
"breadcrumb.foreground": "#939293",
"breadcrumb.focusForeground": "#c1c0c0",
"breadcrumb.activeSelectionForeground": "#fcfcfa",
"settings.headerForeground": "#ffd866",
"settings.modifiedItemForeground": "#ffd866",
"settings.dropdownBackground": "#403e41",
"settings.dropdownForeground": "#fcfcfa",
"settings.dropdownBorder": "#403e41",
"settings.dropdownListBorder": "#939293",
"settings.modifiedItemIndicator": "#ffd866",
"settings.checkboxBackground": "#403e41",
"settings.checkboxForeground": "#fcfcfa",
"settings.checkboxBorder": "#403e41",
"settings.textInputBackground": "#403e41",
"settings.textInputForeground": "#fcfcfa",
"settings.textInputBorder": "#403e41",
"settings.numberInputBackground": "#403e41",
"settings.numberInputForeground": "#fcfcfa",
"settings.numberInputBorder": "#403e41",
"sideBar.background": "#221f22",
"sideBar.foreground": "#939293",
"sideBar.border": "#19181a",
"sideBar.dropBackground": "#221f22bf",
"sideBarTitle.foreground": "#5b595c",
"sideBarSectionHeader.background": "#221f22",
"sideBarSectionHeader.foreground": "#727072",
"editorGroup.emptyBackground": "#19181a",
"editorGroup.focusedEmptyBorder": "#221f22",
"editorGroup.border": "#221f22",
"editorGroup.dropBackground": "#221f22bf",
"editorGroupHeader.noTabsBackground": "#2d2a2e",
"editorGroupHeader.tabsBackground": "#2d2a2e",
"editorGroupHeader.tabsBorder": "#2d2a2e",
"editorPane.background": "#2d2a2e",
"tab.activeBackground": "#2d2a2e",
"tab.activeForeground": "#ffd866",
"tab.border": "#2d2a2e",
"tab.activeBorder": "#ffd866",
"tab.unfocusedActiveBorder": "#939293",
"tab.inactiveBackground": "#2d2a2e",
"tab.inactiveForeground": "#939293",
"tab.unfocusedActiveForeground": "#c1c0c0",
"tab.unfocusedInactiveForeground": "#939293",
"tab.hoverBackground": "#2d2a2e",
"tab.unfocusedHoverBackground": "#2d2a2e",
"tab.hoverBorder": "#5b595c",
"tab.unfocusedHoverBorder": "#2d2a2e",
"tab.activeModifiedBorder": "#5b595c",
"tab.inactiveModifiedBorder": "#5b595c",
"tab.unfocusedActiveModifiedBorder": "#403e41",
"tab.unfocusedInactiveModifiedBorder": "#403e41",
"tab.lastPinnedBorder": "#5b595c",
"editor.background": "#2d2a2e",
"editor.foreground": "#fcfcfa",
"editorLineNumber.foreground": "#5b595c",
"editorLineNumber.activeForeground": "#c1c0c0",
"editorCursor.background": "#2d2a2e",
"editorCursor.foreground": "#fcfcfa",
"editor.selectionBackground": "#c1c0c026",
"editor.inactiveSelectionBackground": "#fcfcfa0c",
"editor.selectionHighlightBackground": "#fcfcfa26",
"editor.selectionHighlightBorder": "#00000000",
"editor.wordHighlightBackground": "#fcfcfa26",
"editor.wordHighlightBorder": "#00000000",
"editor.wordHighlightStrongBackground": "#fcfcfa26",
"editor.wordHighlightStrongBorder": "#00000000",
"editor.findMatchBackground": "#fcfcfa26",
"editor.findMatchBorder": "#ffd866",
"editor.findMatchHighlightBackground": "#fcfcfa26",
"editor.findMatchHighlightBorder": "#00000000",
"editor.findRangeHighlightBackground": "#fcfcfa0c",
"editor.findRangeHighlightBorder": "#00000000",
"editor.hoverHighlightBackground": "#fcfcfa0c",
"editor.lineHighlightBackground": "#fcfcfa0c",
"editor.lineHighlightBorder": "#00000000",
"editorLink.activeForeground": "#78dce8",
"editor.rangeHighlightBackground": "#403e41",
"editor.rangeHighlightBorder": "#403e41",
"editorWhitespace.foreground": "#5b595c",
"editorIndentGuide.background": "#403e41",
"editorRuler.foreground": "#5b595c",
"editorCodeLens.foreground": "#727072",
"editorBracketMatch.background": "#2d2a2e",
"editorBracketMatch.border": "#727072",
"editorError.background": "#00000000",
"editorError.foreground": "#ff6188",
"editorError.border": "#00000000",
"editorWarning.background": "#00000000",
"editorWarning.foreground": "#fc9867",
"editorWarning.border": "#00000000",
"editorInfo.background": "#00000000",
"editorInfo.foreground": "#78dce8",
"editorInfo.border": "#2d2a2e",
"editorHint.foreground": "#ab9df2",
"editorHint.border": "#2d2a2e",
"editorGutter.background": "#2d2a2e",
"editorGutter.modifiedBackground": "#fc9867",
"editorGutter.addedBackground": "#a9dc76",
"editorGutter.deletedBackground": "#ff6188",
"diffEditor.insertedTextBackground": "#a9dc7619",
"diffEditor.removedTextBackground": "#ff618819",
"editorWidget.background": "#403e41",
"editorWidget.border": "#403e41",
"editorSuggestWidget.background": "#403e41",
"editorSuggestWidget.border": "#403e41",
"editorSuggestWidget.foreground": "#c1c0c0",
"editorSuggestWidget.highlightForeground": "#fcfcfa",
"editorSuggestWidget.selectedBackground": "#727072",
"editorHoverWidget.background": "#403e41",
"editorHoverWidget.border": "#2d2a2e",
"debugExceptionWidget.background": "#403e41",
"debugExceptionWidget.border": "#2d2a2e",
"editorMarkerNavigation.background": "#403e41",
"editorMarkerNavigationError.background": "#ff6188",
"editorMarkerNavigationWarning.background": "#fc9867",
"editorMarkerNavigationInfo.background": "#78dce8",
"peekView.border": "#2d2a2e",
"peekViewEditor.background": "#403e41",
"peekViewEditorGutter.background": "#403e41",
"peekViewEditor.matchHighlightBackground": "#5b595c",
"peekViewResult.background": "#403e41",
"peekViewResult.fileForeground": "#939293",
"peekViewResult.lineForeground": "#939293",
"peekViewResult.matchHighlightBackground": "#5b595c",
"peekViewResult.selectionBackground": "#403e41",
"peekViewResult.selectionForeground": "#fcfcfa",
"peekViewTitle.background": "#403e41",
"peekViewTitleDescription.foreground": "#939293",
"peekViewTitleLabel.foreground": "#fcfcfa",
"merge.currentHeaderBackground": "#ff618826",
"merge.currentContentBackground": "#ff618819",
"merge.incomingHeaderBackground": "#a9dc7626",
"merge.incomingContentBackground": "#a9dc7619",
"merge.border": "#2d2a2e",
"merge.commonHeaderBackground": "#fcfcfa26",
"merge.commonContentBackground": "#fcfcfa19",
"editorOverviewRuler.border": "#2d2a2e",
"editorOverviewRuler.currentContentForeground": "#403e41",
"editorOverviewRuler.incomingContentForeground": "#403e41",
"editorOverviewRuler.findMatchForeground": "#fcfcfa26",
"editorOverviewRuler.rangeHighlightForeground": "#fcfcfa26",
"editorOverviewRuler.selectionHighlightForeground": "#fcfcfa26",
"editorOverviewRuler.wordHighlightForeground": "#fcfcfa26",
"editorOverviewRuler.wordHighlightStrongForeground": "#fcfcfa26",
"editorOverviewRuler.modifiedForeground": "#fc9867",
"editorOverviewRuler.addedForeground": "#a9dc76",
"editorOverviewRuler.deletedForeground": "#ff6188",
"editorOverviewRuler.errorForeground": "#ff6188",
"editorOverviewRuler.warningForeground": "#fc9867",
"editorOverviewRuler.infoForeground": "#78dce8",
"panel.background": "#403e41",
"panel.border": "#2d2a2e",
"panel.dropBackground": "#221f22bf",
"panelTitle.activeBorder": "#ffd866",
"panelTitle.activeForeground": "#ffd866",
"panelTitle.inactiveForeground": "#939293",
"statusBar.background": "#221f22",
"statusBar.foreground": "#727072",
"statusBar.border": "#19181a",
"statusBar.debuggingBackground": "#727072",
"statusBar.debuggingForeground": "#fcfcfa",
"statusBar.debuggingBorder": "#221f22",
"statusBar.noFolderBackground": "#221f22",
"statusBar.noFolderForeground": "#727072",
"statusBar.noFolderBorder": "#19181a",
"statusBarItem.activeBackground": "#2d2a2e",
"statusBarItem.hoverBackground": "#fcfcfa0c",
"statusBarItem.errorBackground": "#2d2a2e",
"statusBarItem.errorForeground": "#ff6188",
"statusBarItem.prominentBackground": "#403e41",
"statusBarItem.prominentHoverBackground": "#403e41",
"statusBarItem.remoteForeground": "#a9dc76",
"statusBarItem.remoteBackground": "#221f22",
"titleBar.activeBackground": "#221f22",
"titleBar.activeForeground": "#939293",
"titleBar.inactiveBackground": "#221f22",
"titleBar.inactiveForeground": "#5b595c",
"titleBar.border": "#19181a",
"notificationCenter.border": "#403e41",
"notificationCenterHeader.foreground": "#939293",
"notificationCenterHeader.background": "#403e41",
"notificationToast.border": "#403e41",
"notifications.foreground": "#c1c0c0",
"notifications.background": "#403e41",
"notifications.border": "#403e41",
"notificationLink.foreground": "#ffd866",
"extensionButton.prominentForeground": "#fcfcfa",
"extensionButton.prominentBackground": "#403e41",
"extensionButton.prominentHoverBackground": "#5b595c",
"pickerGroup.border": "#2d2a2e",
"pickerGroup.foreground": "#5b595c",
"terminal.background": "#403e41",
"terminal.foreground": "#fcfcfa",
"terminal.ansiBlack": "#403e41",
"terminal.ansiBlue": "#fc9867",
"terminal.ansiBrightBlack": "#727072",
"terminal.ansiBrightBlue": "#fc9867",
"terminal.ansiBrightCyan": "#78dce8",
"terminal.ansiBrightGreen": "#a9dc76",
"terminal.ansiBrightMagenta": "#ab9df2",
"terminal.ansiBrightRed": "#ff6188",
"terminal.ansiBrightWhite": "#fcfcfa",
"terminal.ansiBrightYellow": "#ffd866",
"terminal.ansiCyan": "#78dce8",
"terminal.ansiGreen": "#a9dc76",
"terminal.ansiMagenta": "#ab9df2",
"terminal.ansiRed": "#ff6188",
"terminal.ansiWhite": "#fcfcfa",
"terminal.ansiYellow": "#ffd866",
"terminal.selectionBackground": "#fcfcfa26",
"terminalCursor.background": "#00000000",
"terminalCursor.foreground": "#fcfcfa",
"debugToolBar.background": "#403e41",
"welcomePage.buttonBackground": "#403e41",
"welcomePage.buttonHoverBackground": "#5b595c",
"walkThrough.embeddedEditorBackground": "#221f22",
"gitDecoration.addedResourceForeground": "#a9dc76",
"gitDecoration.modifiedResourceForeground": "#ffd866",
"gitDecoration.deletedResourceForeground": "#ff6188",
"gitDecoration.untrackedResourceForeground": "#fc9867",
"gitDecoration.ignoredResourceForeground": "#5b595c",
"gitDecoration.conflictingResourceForeground": "#fc9867",
"gitDecoration.stageDeletedResourceForeground": "#ff6188",
"gitDecoration.stageModifiedResourceForeground": "#ffd866",
"symbolIcon.arrayForeground": "#ff6188",
"symbolIcon.booleanForeground": "#ff6188",
"symbolIcon.classForeground": "#78dce8",
"symbolIcon.colorForeground": "#ab9df2",
"symbolIcon.constructorForeground": "#a9dc76",
"symbolIcon.constantForeground": "#ab9df2",
"symbolIcon.enumeratorForeground": "#fc9867",
"symbolIcon.enumeratorMemberForeground": "#fc9867",
"symbolIcon.eventForeground": "#fc9867",
"symbolIcon.fieldForeground": "#fc9867",
"symbolIcon.fileForeground": "#c1c0c0",
"symbolIcon.folderForeground": "#c1c0c0",
"symbolIcon.functionForeground": "#a9dc76",
"symbolIcon.interfaceForeground": "#78dce8",
"symbolIcon.keyForeground": "#fc9867",
"symbolIcon.keywordForeground": "#ff6188",
"symbolIcon.methodForeground": "#a9dc76",
"symbolIcon.moduleForeground": "#78dce8",
"symbolIcon.namespaceForeground": "#78dce8",
"symbolIcon.nullForeground": "#ab9df2",
"symbolIcon.numberForeground": "#ab9df2",
"symbolIcon.objectForeground": "#78dce8",
"symbolIcon.operatorForeground": "#ff6188",
"symbolIcon.packageForeground": "#ab9df2",
"symbolIcon.propertyForeground": "#fc9867",
"symbolIcon.referenceForeground": "#ab9df2",
"symbolIcon.snippetForeground": "#a9dc76",
"symbolIcon.stringForeground": "#ffd866",
"symbolIcon.structForeground": "#ff6188",
"symbolIcon.textForeground": "#ffd866",
"symbolIcon.typeParameterForeground": "#fc9867",
"symbolIcon.unitForeground": "#ab9df2",
"symbolIcon.variableForeground": "#78dce8",
"problemsErrorIcon.foreground": "#ff6188",
"problemsWarningIcon.foreground": "#fc9867",
"problemsInfoIcon.foreground": "#78dce8",
"notificationsErrorIcon.foreground": "#ff6188",
"notificationsInfoIcon.foreground": "#78dce8",
"notificationsWarningIcon.foreground": "#fc9867",
"editorLightBulb.foreground": "#ffd866",
"editorLightBulbAutoFix.foreground": "#a9dc76",
"debugIcon.startForeground": "#a9dc76",
"debugIcon.continueForeground": "#fcfcfa",
"debugIcon.disconnectForeground": "#fcfcfa",
"debugIcon.pauseForeground": "#fcfcfa",
"debugIcon.restartForeground": "#a9dc76",
"debugIcon.stepBackForeground": "#fcfcfa",
"debugIcon.stepIntoForeground": "#fcfcfa",
"debugIcon.stepOutForeground": "#fcfcfa",
"debugIcon.stepOverForeground": "#fcfcfa",
"debugIcon.stopForeground": "#ff6188",
"debugIcon.breakpointForeground": "#ff6188",
"debugIcon.breakpointDisabledForeground": "#c1c0c0",
"debugIcon.breakpointUnverifiedForeground": "#fc9867",
"debugIcon.breakpointStackframeForeground": "#fcfcfa",
"debugIcon.breakpointCurrentStackframeForeground": "#ffd866",
"charts.red": "#ff6188",
"charts.orange": "#fc9867",
"charts.yellow": "#ffd866",
"charts.green": "#a9dc76",
"charts.blue": "#78dce8",
"charts.purple": "#ab9df2",
"charts.foreground": "#fcfcfa",
"charts.lines": "#727072",
"sash.hoverBorder": "#727072"
}
},
"monokai-classic": {
"base": "vs-dark",
"inherit": true,
"rules": [],
"colors": {
"focusBorder": "#6e7066",
"foreground": "#fdfff1",
"widget.shadow": "#161613",
"selection.background": "#c0c1b526",
"descriptionForeground": "#919288",
"errorForeground": "#f92672",
"textBlockQuote.background": "#3b3c35",
"textBlockQuote.border": "#3b3c35",
"textCodeBlock.background": "#3b3c35",
"textLink.activeForeground": "#fdfff1",
"textLink.foreground": "#e6db74",
"textPreformat.foreground": "#fdfff1",
"textSeparator.foreground": "#6e7066",
"button.background": "#3b3c35",
"button.foreground": "#919288",
"button.hoverBackground": "#272822",
"dropdown.background": "#272822",
"dropdown.listBackground": "#3b3c35",
"dropdown.border": "#272822",
"dropdown.foreground": "#919288",
"input.background": "#3b3c35",
"input.border": "#3b3c35",
"input.foreground": "#fdfff1",
"input.placeholderForeground": "#6e7066",
"inputOption.activeBackground": "#57584f",
"inputOption.activeBorder": "#57584f",
"inputValidation.errorBackground": "#3b3c35",
"inputValidation.errorForeground": "#f92672",
"inputValidation.errorBorder": "#f92672",
"inputValidation.infoBackground": "#3b3c35",
"inputValidation.infoForeground": "#66d9ef",
"inputValidation.infoBorder": "#66d9ef",
"inputValidation.warningBackground": "#3b3c35",
"inputValidation.warningForeground": "#fd971f",
"inputValidation.warningBorder": "#fd971f",
"scrollbar.shadow": "#272822",
"scrollbarSlider.activeBackground": "#fdfff112",
"scrollbarSlider.background": "#fdfff112",
"scrollbarSlider.hoverBackground": "#fdfff112",
"badge.foreground": "#272822",
"badge.background": "#e6db74",
"progressBar.background": "#3b3c35",
"list.activeSelectionBackground": "#fdfff10c",
"list.activeSelectionForeground": "#e6db74",
"list.errorForeground": "#f92672",
"list.warningForeground": "#fd971f",
"list.dropBackground": "#1d1e19bf",
"list.focusBackground": "#272822",
"list.focusForeground": "#fdfff1",
"list.highlightForeground": "#fdfff1",
"list.hoverBackground": "#fdfff10c",
"list.hoverForeground": "#fdfff1",
"list.inactiveSelectionBackground": "#c0c1b50c",
"list.inactiveSelectionForeground": "#e6db74",
"list.inactiveFocusBackground": "#272822",