1{
2 "$schema": "vscode://schemas/color-theme",
3 "name": "Gruvbox Light Medium",
4 "semanticHighlighting": true,
5 "tokenColors": [
6 {
7 "settings": {
8 "foreground": "#3c3836"
9 }
10 },
11 {
12 "scope": "emphasis",
13 "settings": {
14 "fontStyle": "italic"
15 }
16 },
17 {
18 "scope": "strong",
19 "settings": {
20 "fontStyle": "bold"
21 }
22 },
23 {
24 "scope": "header",
25 "settings": {
26 "foreground": "#458588"
27 }
28 },
29 {
30 "scope": ["comment", "punctuation.definition.comment"],
31 "settings": {
32 "foreground": "#928374",
33 "fontStyle": "italic"
34 }
35 },
36 {
37 "scope": ["constant", "support.constant", "variable.arguments"],
38 "settings": {
39 "foreground": "#8f3f71"
40 }
41 },
42 {
43 "scope": "constant.rgb-value",
44 "settings": {
45 "foreground": "#3c3836"
46 }
47 },
48 {
49 "scope": "entity.name.selector",
50 "settings": {
51 "foreground": "#427b58"
52 }
53 },
54 {
55 "scope": "entity.other.attribute-name",
56 "settings": {
57 "foreground": "#b57614"
58 }
59 },
60 {
61 "scope": ["entity.name.tag", "punctuation.tag"],
62 "settings": {
63 "foreground": "#427b58"
64 }
65 },
66 {
67 "scope": ["invalid", "invalid.illegal"],
68 "settings": {
69 "foreground": "#cc241d"
70 }
71 },
72 {
73 "scope": "invalid.deprecated",
74 "settings": {
75 "foreground": "#b16286"
76 }
77 },
78 {
79 "scope": "meta.selector",
80 "settings": {
81 "foreground": "#427b58"
82 }
83 },
84 {
85 "scope": "meta.preprocessor",
86 "settings": {
87 "foreground": "#af3a03"
88 }
89 },
90 {
91 "scope": "meta.preprocessor.string",
92 "settings": {
93 "foreground": "#79740e"
94 }
95 },
96 {
97 "scope": "meta.preprocessor.numeric",
98 "settings": {
99 "foreground": "#79740e"
100 }
101 },
102 {
103 "scope": "meta.header.diff",
104 "settings": {
105 "foreground": "#af3a03"
106 }
107 },
108 {
109 "scope": "storage",
110 "settings": {
111 "foreground": "#9d0006"
112 }
113 },
114 {
115 "scope": ["storage.type", "storage.modifier"],
116 "settings": {
117 "foreground": "#af3a03"
118 }
119 },
120 {
121 "scope": "string",
122 "settings": {
123 "foreground": "#79740e"
124 }
125 },
126 {
127 "scope": "string.tag",
128 "settings": {
129 "foreground": "#79740e"
130 }
131 },
132 {
133 "scope": "string.value",
134 "settings": {
135 "foreground": "#79740e"
136 }
137 },
138 {
139 "scope": "string.regexp",
140 "settings": {
141 "foreground": "#af3a03"
142 }
143 },
144 {
145 "scope": "string.escape",
146 "settings": {
147 "foreground": "#9d0006"
148 }
149 },
150 {
151 "scope": "string.quasi",
152 "settings": {
153 "foreground": "#427b58"
154 }
155 },
156 {
157 "scope": "string.entity",
158 "settings": {
159 "foreground": "#79740e"
160 }
161 },
162 {
163 "scope": "object",
164 "settings": {
165 "foreground": "#3c3836"
166 }
167 },
168 {
169 "scope": "module.node",
170 "settings": {
171 "foreground": "#076678"
172 }
173 },
174 {
175 "scope": "support.type.property-name",
176 "settings": {
177 "foreground": "#689d6a"
178 }
179 },
180 {
181 "scope": "keyword",
182 "settings": {
183 "foreground": "#9d0006"
184 }
185 },
186 {
187 "scope": "keyword.control",
188 "settings": {
189 "foreground": "#9d0006"
190 }
191 },
192 {
193 "scope": "keyword.control.module",
194 "settings": {
195 "foreground": "#427b58"
196 }
197 },
198 {
199 "scope": "keyword.control.less",
200 "settings": {
201 "foreground": "#d79921"
202 }
203 },
204 {
205 "scope": "keyword.operator",
206 "settings": {
207 "foreground": "#427b58"
208 }
209 },
210 {
211 "scope": "keyword.operator.new",
212 "settings": {
213 "foreground": "#af3a03"
214 }
215 },
216 {
217 "scope": "keyword.other.unit",
218 "settings": {
219 "foreground": "#79740e"
220 }
221 },
222 {
223 "scope": "metatag.php",
224 "settings": {
225 "foreground": "#af3a03"
226 }
227 },
228 {
229 "scope": "support.function.git-rebase",
230 "settings": {
231 "foreground": "#689d6a"
232 }
233 },
234 {
235 "scope": "constant.sha.git-rebase",
236 "settings": {
237 "foreground": "#79740e"
238 }
239 },
240 {
241 "name": "Types declaration and references",
242 "scope": [
243 "meta.type.name",
244 "meta.return.type",
245 "meta.return-type",
246 "meta.cast",
247 "meta.type.annotation",
248 "support.type",
249 "storage.type.cs",
250 "variable.class"
251 ],
252 "settings": {
253 "foreground": "#b57614"
254 }
255 },
256 {
257 "scope": ["variable.this", "support.variable"],
258 "settings": {
259 "foreground": "#8f3f71"
260 }
261 },
262 {
263 "scope": [
264 "entity.name",
265 "entity.static",
266 "entity.name.class.static.function",
267 "entity.name.function",
268 "entity.name.class",
269 "entity.name.type"
270 ],
271 "settings": {
272 "foreground": "#b57614"
273 }
274 },
275 {
276 "name": "Function declarations",
277 "scope": ["entity.function", "entity.name.function.static"],
278 "settings": {
279 "foreground": "#427b58"
280 }
281 },
282 {
283 "scope": "entity.name.function.function-call",
284 "settings": {
285 "foreground": "#427b58"
286 }
287 },
288 {
289 "scope": "support.function.builtin",
290 "settings": {
291 "foreground": "#af3a03"
292 }
293 },
294 {
295 "scope": [
296 "entity.name.method",
297 "entity.name.method.function-call",
298 "entity.name.static.function-call"
299 ],
300 "settings": {
301 "foreground": "#689d6a"
302 }
303 },
304 {
305 "scope": "brace",
306 "settings": {
307 "foreground": "#504945"
308 }
309 },
310 {
311 "name": "variables",
312 "scope": [
313 "meta.parameter.type.variable",
314 "variable.parameter",
315 "variable.name",
316 "variable.other",
317 "variable",
318 "string.constant.other.placeholder"
319 ],
320 "settings": {
321 "foreground": "#076678"
322 }
323 },
324 {
325 "scope": "prototype",
326 "settings": {
327 "foreground": "#8f3f71"
328 }
329 },
330 {
331 "scope": ["punctuation"],
332 "settings": {
333 "foreground": "#7c6f64"
334 }
335 },
336 {
337 "scope": "punctuation.quoted",
338 "settings": {
339 "foreground": "#3c3836"
340 }
341 },
342 {
343 "scope": "punctuation.quasi",
344 "settings": {
345 "foreground": "#9d0006"
346 }
347 },
348 {
349 "name": "URL",
350 "scope": ["*url*", "*link*", "*uri*"],
351 "settings": {
352 "fontStyle": "underline"
353 }
354 },
355
356 {
357 "name": "Python function",
358 "scope": ["meta.function.python", "entity.name.function.python"],
359 "settings": {
360 "foreground": "#427b58"
361 }
362 },
363 {
364 "name": "Python Function and Class definition keywords",
365 "scope": [
366 "storage.type.function.python",
367 "storage.modifier.declaration",
368 "storage.type.class.python",
369 "storage.type.string.python"
370 ],
371 "settings": {
372 "foreground": "#9d0006"
373 }
374 },
375 {
376 "name": "Async keyword",
377 "scope": ["storage.type.function.async.python"],
378 "settings": {
379 "foreground": "#9d0006"
380 }
381 },
382 {
383 "name": "Python Function Call",
384 "scope": "meta.function-call.generic",
385 "settings": {
386 "foreground": "#076678"
387 }
388 },
389 {
390 "name": "Python Function Arguments",
391 "scope": "meta.function-call.arguments",
392 "settings": {
393 "foreground": "#504945"
394 }
395 },
396 {
397 "name": "Python Function decorator",
398 "scope": "entity.name.function.decorator",
399 "settings": {
400 "foreground": "#b57614",
401 "fontStyle": "bold"
402 }
403 },
404 {
405 "name": "Python ALL CAPS",
406 "scope": "constant.other.caps",
407 "settings": {
408 "fontStyle": "bold"
409 }
410 },
411
412 {
413 "scope": "keyword.operator.logical",
414 "settings": {
415 "foreground": "#9d0006"
416 }
417 },
418 {
419 "scope": "punctuation.definition.logical-expression",
420 "settings": {
421 "foreground": "#af3a03"
422 }
423 },
424 {
425 "scope": [
426 "string.interpolated.dollar.shell",
427 "string.interpolated.backtick.shell"
428 ],
429 "settings": {
430 "foreground": "#427b58"
431 }
432 },
433
434 {
435 "scope": "keyword.control.directive",
436 "settings": {
437 "foreground": "#427b58"
438 }
439 },
440 {
441 "scope": "support.function.C99",
442 "settings": {
443 "foreground": "#b57614"
444 }
445 },
446
447 {
448 "name": "C# functions & namespace",
449 "scope": [
450 "meta.function.cs",
451 "entity.name.function.cs",
452 "entity.name.type.namespace.cs"
453 ],
454 "settings": {
455 "foreground": "#79740e"
456 }
457 },
458 {
459 "name": "C# Variables",
460 "scope": [
461 "keyword.other.using.cs",
462 "entity.name.variable.field.cs",
463 "entity.name.variable.local.cs",
464 "variable.other.readwrite.cs"
465 ],
466 "settings": {
467 "foreground": "#427b58"
468 }
469 },
470 {
471 "name": "C# This",
472 "scope": ["keyword.other.this.cs", "keyword.other.base.cs"],
473 "settings": {
474 "foreground": "#8f3f71"
475 }
476 },
477
478 {
479 "scope": "meta.scope.prerequisites",
480 "settings": {
481 "foreground": "#b57614"
482 }
483 },
484 {
485 "scope": "entity.name.function.target",
486 "settings": {
487 "foreground": "#79740e",
488 "fontStyle": "bold"
489 }
490 },
491
492 {
493 "name": "coloring of the Java import and package identifiers",
494 "scope": [
495 "storage.modifier.import.java",
496 "storage.modifier.package.java"
497 ],
498 "settings": {
499 "foreground": "#665c54"
500 }
501 },
502 {
503 "scope": [
504 "keyword.other.import.java",
505 "keyword.other.package.java"
506 ],
507 "settings": {
508 "foreground": "#427b58"
509 }
510 },
511 {
512 "scope": "storage.type.java",
513 "settings": {
514 "foreground": "#b57614"
515 }
516 },
517 {
518 "scope": "storage.type.annotation",
519 "settings": {
520 "foreground": "#076678",
521 "fontStyle": "bold"
522 }
523 },
524 {
525 "scope": "keyword.other.documentation.javadoc",
526 "settings": {
527 "foreground": "#427b58"
528 }
529 },
530 {
531 "scope": "comment.block.javadoc variable.parameter.java",
532 "settings": {
533 "foreground": "#79740e",
534 "fontStyle": "bold"
535 }
536 },
537 {
538 "scope": [
539 "source.java variable.other.object",
540 "source.java variable.other.definition.java"
541 ],
542 "settings": {
543 "foreground": "#3c3836"
544 }
545 },
546
547 {
548 "name": "Lisp optional function parameters",
549 "scope": "meta.function-parameters.lisp",
550 "settings": {
551 "foreground": "#b57614"
552 }
553 },
554
555 {
556 "scope": "markup.underline",
557 "settings": {
558 "fontStyle": "underline"
559 }
560 },
561 {
562 "scope": "string.other.link.title.markdown",
563 "settings": {
564 "foreground": "#928374",
565 "fontStyle": "underline"
566 }
567 },
568 {
569 "scope": "markup.underline.link",
570 "settings": {
571 "foreground": "#8f3f71"
572 }
573 },
574 {
575 "scope": "markup.bold",
576 "settings": {
577 "fontStyle": "bold",
578 "foreground": "#af3a03"
579 }
580 },
581 {
582 "scope": "markup.heading",
583 "settings": {
584 "fontStyle": "bold",
585 "foreground": "#af3a03"
586 }
587 },
588 {
589 "scope": "markup.italic",
590 "settings": {
591 "fontStyle": "italic"
592 }
593 },
594 {
595 "scope": "markup.inserted",
596 "settings": {
597 "foreground": "#79740e"
598 }
599 },
600 {
601 "scope": "markup.deleted",
602 "settings": {
603 "foreground": "#d65d0e"
604 }
605 },
606 {
607 "scope": "markup.changed",
608 "settings": {
609 "foreground": "#af3a03"
610 }
611 },
612 {
613 "scope": "markup.punctuation.quote.beginning",
614 "settings": {
615 "foreground": "#98971a"
616 }
617 },
618 {
619 "scope": "markup.punctuation.list.beginning",
620 "settings": {
621 "foreground": "#076678"
622 }
623 },
624 {
625 "scope": ["markup.inline.raw", "markup.fenced_code.block"],
626 "settings": {
627 "foreground": "#427b58"
628 }
629 },
630
631 {
632 "scope": "string.quoted.double.json",
633 "settings": {
634 "foreground": "#076678"
635 }
636 },
637 {
638 "name": "JSON Level 0",
639 "scope": [
640 "source.json meta.structure.dictionary.json support.type.property-name.json"
641 ],
642 "settings": {
643 "foreground": "#79740e"
644 }
645 },
646 {
647 "name": "JSON Level 1",
648 "scope": [
649 "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
650 ],
651 "settings": {
652 "foreground": "#427b58"
653 }
654 },
655 {
656 "name": "JSON Level 2",
657 "scope": [
658 "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
659 ],
660 "settings": {
661 "foreground": "#8f3f71"
662 }
663 },
664 {
665 "name": "JSON Level 3",
666 "scope": [
667 "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
668 ],
669 "settings": {
670 "foreground": "#79740e"
671 }
672 },
673
674 {
675 "scope": "entity.other.attribute-name.css",
676 "settings": {
677 "foreground": "#af3a03"
678 }
679 },
680 {
681 "scope": "source.css meta.selector",
682 "settings": {
683 "foreground": "#3c3836"
684 }
685 },
686 {
687 "scope": "support.type.property-name.css",
688 "settings": {
689 "foreground": "#af3a03"
690 }
691 },
692 {
693 "scope": "entity.other.attribute-name.class",
694 "settings": {
695 "foreground": "#79740e"
696 }
697 },
698 {
699 "scope": [
700 "source.css support.function.transform",
701 "source.css support.function.timing-function",
702 "source.css support.function.misc"
703 ],
704 "settings": {
705 "foreground": "#9d0006"
706 }
707 },
708 {
709 "name": "CSS property value",
710 "scope": [
711 "support.property-value",
712 "constant.rgb-value",
713 "support.property-value.scss",
714 "constant.rgb-value.scss"
715 ],
716 "settings": {
717 "foreground": "#d65d0e"
718 }
719 },
720 {
721 "scope": ["entity.name.tag.css"],
722 "settings": {
723 "fontStyle": ""
724 }
725 },
726
727 {
728 "scope": ["punctuation.definition.tag"],
729 "settings": {
730 "foreground": "#076678"
731 }
732 },
733 {
734 "scope": ["text.html entity.name.tag", "text.html punctuation.tag"],
735 "settings": {
736 "foreground": "#427b58",
737 "fontStyle": "bold"
738 }
739 },
740
741 {
742 "scope": ["source.js variable.language"],
743 "settings": {
744 "foreground": "#af3a03"
745 }
746 },
747
748 {
749 "scope": ["source.ts variable.language"],
750 "settings": {
751 "foreground": "#af3a03"
752 }
753 },
754
755 {
756 "scope": ["source.go storage.type"],
757 "settings": {
758 "foreground": "#b57614"
759 }
760 },
761 {
762 "scope": ["source.go entity.name.import"],
763 "settings": {
764 "foreground": "#79740e"
765 }
766 },
767 {
768 "scope": ["source.go keyword.package", "source.go keyword.import"],
769 "settings": {
770 "foreground": "#427b58"
771 }
772 },
773 {
774 "scope": [
775 "source.go keyword.interface",
776 "source.go keyword.struct"
777 ],
778 "settings": {
779 "foreground": "#076678"
780 }
781 },
782 {
783 "scope": ["source.go entity.name.type"],
784 "settings": {
785 "foreground": "#3c3836"
786 }
787 },
788 {
789 "scope": ["source.go entity.name.function"],
790 "settings": {
791 "foreground": "#8f3f71"
792 }
793 },
794
795 {
796 "scope": ["keyword.control.cucumber.table"],
797 "settings": {
798 "foreground": "#076678"
799 }
800 },
801
802 {
803 "name": "ReasonML String",
804 "scope": [
805 "source.reason string.double",
806 "source.reason string.regexp"
807 ],
808 "settings": {
809 "foreground": "#79740e"
810 }
811 },
812 {
813 "name": "ReasonML equals sign",
814 "scope": ["source.reason keyword.control.less"],
815 "settings": {
816 "foreground": "#427b58"
817 }
818 },
819 {
820 "name": "ReasonML variable",
821 "scope": ["source.reason entity.name.function"],
822 "settings": {
823 "foreground": "#076678"
824 }
825 },
826 {
827 "name": "ReasonML property",
828 "scope": [
829 "source.reason support.property-value",
830 "source.reason entity.name.filename"
831 ],
832 "settings": {
833 "foreground": "#af3a03"
834 }
835 },
836
837 {
838 "name": "Powershell member",
839 "scope": ["source.powershell variable.other.member.powershell"],
840 "settings": {
841 "foreground": "#af3a03"
842 }
843 },
844 {
845 "name": "Powershell function",
846 "scope": ["source.powershell support.function.powershell"],
847 "settings": {
848 "foreground": "#b57614"
849 }
850 },
851 {
852 "name": "Powershell function attribute",
853 "scope": [
854 "source.powershell support.function.attribute.powershell"
855 ],
856 "settings": {
857 "foreground": "#665c54"
858 }
859 },
860 {
861 "name": "Powershell hashtable member",
862 "scope": [
863 "source.powershell meta.hashtable.assignment.powershell variable.other.readwrite.powershell"
864 ],
865 "settings": {
866 "foreground": "#af3a03"
867 }
868 }
869 ],
870 "colors": {
871 "focusBorder": "#ebdbb2",
872 "foreground": "#3c3836",
873 "widget.shadow": "#fbf1c730",
874 "selection.background": "#689d6a80",
875 "errorForeground": "#9d0006",
876
877 "button.background": "#45858880",
878 "button.foreground": "#3c3836",
879 "button.hoverBackground": "#45858860",
880
881 "dropdown.background": "#fbf1c7",
882 "dropdown.border": "#ebdbb2",
883 "dropdown.foreground": "#3c3836",
884
885 "input.background": "#3c383605",
886 "input.border": "#ebdbb2",
887 "input.foreground": "#3c3836",
888 "input.placeholderForeground": "#3c383660",
889 "inputValidation.errorBorder": "#9d0006",
890 "inputValidation.errorBackground": "#cc241d80",
891 "inputValidation.infoBorder": "#076678",
892 "inputValidation.infoBackground": "#45858880",
893 "inputValidation.warningBorder": "#b57614",
894 "inputValidation.warningBackground": "#d7992180",
895 "inputOption.activeBorder": "#3c383660",
896
897 "scrollbar.shadow": "#fbf1c7",
898 "scrollbarSlider.activeBackground": "#689d6a",
899 "scrollbarSlider.hoverBackground": "#bdae93",
900 "scrollbarSlider.background": "#d5c4a199",
901
902 "badge.background": "#8f3f71",
903 "badge.foreground": "#fbf1c7",
904
905 "progressBar.background": "#689d6a",
906
907 "list.activeSelectionBackground": "#ebdbb280",
908 "list.activeSelectionForeground": "#af3a03",
909 "list.hoverBackground": "#ebdbb280",
910 "list.hoverForeground": "#504945",
911 "list.focusBackground": "#ebdbb2",
912 "list.focusForeground": "#3c3836",
913 "list.inactiveSelectionForeground": "#d65d0e",
914 "list.inactiveSelectionBackground": "#ebdbb280",
915 "list.dropBackground": "#ebdbb2",
916 "list.highlightForeground": "#689d6a",
917
918 "sideBar.background": "#fbf1c7",
919 "sideBar.foreground": "#504945",
920 "sideBar.border": "#ebdbb2",
921 "sideBarTitle.foreground": "#3c3836",
922 "sideBarSectionHeader.background": "#fbf1c700",
923 "sideBarSectionHeader.foreground": "#3c3836",
924
925 "activityBar.background": "#fbf1c7",
926 "activityBar.foreground": "#3c3836",
927 "activityBar.border": "#ebdbb2",
928 "activityBarBadge.background": "#458588",
929 "activityBarBadge.foreground": "#ebdbb2",
930
931 "editorGroup.border": "#ebdbb2",
932 "editorGroup.dropBackground": "#ebdbb260",
933 "editorGroupHeader.noTabsBackground": "#ebdbb2",
934 "editorGroupHeader.tabsBackground": "#fbf1c7",
935 "editorGroupHeader.tabsBorder": "#ebdbb2",
936
937 "tab.border": "#fbf1c700",
938 "tab.activeBackground": "#ebdbb2",
939 "tab.activeBorder": "#d65d0e",
940 "tab.activeForeground": "#3c3836",
941 "tab.inactiveForeground": "#7c6f64",
942 "tab.inactiveBackground": "#fbf1c7",
943 "tab.unfocusedActiveForeground": "#7c6f64",
944 "tab.unfocusedActiveBorder": "#fbf1c700",
945 "tab.unfocusedInactiveForeground": "#928374",
946
947 "editor.background": "#fbf1c7",
948 "editor.foreground": "#3c3836",
949 "editorLineNumber.foreground": "#bdae93",
950 "editorCursor.foreground": "#3c3836",
951 "editor.selectionBackground": "#689d6a40",
952 "editor.selectionHighlightBackground": "#b5761440",
953 "editor.hoverHighlightBackground": "#689d6a50",
954 "editorLink.activeForeground": "#3c3836",
955 "editor.findMatchBackground": "#07667870",
956 "editor.findMatchHighlightBackground": "#af3a0330",
957 "editor.findRangeHighlightBackground": "#07667870",
958 "editor.lineHighlightBackground": "#ebdbb260",
959 "editor.lineHighlightBorder": "#ebdbb200",
960 "editorWhitespace.foreground": "#7c6f6420",
961 "editorRuler.foreground": "#7c6f6440",
962 "editorCodeLens.foreground": "#7c6f6490",
963 "editorBracketMatch.border": "#fbf1c700",
964 "editorBracketMatch.background": "#92837480",
965 "editorHoverWidget.background": "#fbf1c7",
966 "editorHoverWidget.border": "#ebdbb2",
967 "editorOverviewRuler.border": "#fbf1c700",
968 "editorOverviewRuler.findMatchForeground": "#665c54",
969 "editorOverviewRuler.rangeHighlightForeground": "#665c54",
970 "editorOverviewRuler.selectionHighlightForeground": "#bdae93",
971 "editorOverviewRuler.wordHighlightForeground": "#bdae93",
972 "editorOverviewRuler.wordHighlightStrongForeground": "#bdae93",
973 "editorOverviewRuler.modifiedForeground": "#076678",
974 "editorOverviewRuler.addedForeground": "#076678",
975 "editorOverviewRuler.deletedForeground": "#076678",
976 "editorOverviewRuler.errorForeground": "#9d0006",
977 "editorOverviewRuler.warningForeground": "#d79921",
978 "editorOverviewRuler.infoForeground": "#8f3f71",
979 "editorGutter.background": "#fbf1c700",
980 "editorGutter.modifiedBackground": "#076678",
981 "editorGutter.addedBackground": "#79740e",
982 "editorGutter.deletedBackground": "#9d0006",
983 "editorError.foreground": "#cc241d",
984 "editorWarning.foreground": "#d79921",
985 "editorInfo.foreground": "#458588",
986
987 "editorBracketHighlight.foreground1": "#b16286",
988 "editorBracketHighlight.foreground2": "#458588",
989 "editorBracketHighlight.foreground3": "#689d6a",
990 "editorBracketHighlight.foreground4": "#98971a",
991 "editorBracketHighlight.foreground5": "#d79921",
992 "editorBracketHighlight.foreground6": "#d65d0e",
993 "editorBracketHighlight.unexpectedBracket.foreground": "#cc241d",
994
995 "diffEditor.insertedTextBackground": "#79740e30",
996 "diffEditor.removedTextBackground": "#9d000630",
997
998 "editorWidget.background": "#fbf1c7",
999 "editorWidget.border": "#ebdbb2",
1000 "editorSuggestWidget.background": "#fbf1c7",
1001 "editorSuggestWidget.foreground": "#3c3836",
1002 "editorSuggestWidget.highlightForeground": "#689d6a",
1003 "editorSuggestWidget.selectedBackground": "#ebdbb260",
1004 "editorSuggestWidget.border": "#ebdbb2",
1005
1006 "peekView.border": "#ebdbb2",
1007 "peekViewEditor.background": "#ebdbb270",
1008 "peekViewEditor.matchHighlightBackground": "#d5c4a1",
1009 "peekViewEditorGutter.background": "#ebdbb270",
1010 "peekViewResult.background": "#ebdbb270",
1011 "peekViewResult.fileForeground": "#3c3836",
1012 "peekViewResult.selectionBackground": "#45858820",
1013 "peekViewResult.selectionForeground": "#3c3836",
1014 "peekViewResult.lineForeground": "#3c3836",
1015 "peekViewResult.matchHighlightBackground": "#d5c4a1",
1016 "peekViewTitle.background": "#ebdbb270",
1017 "peekViewTitleDescription.foreground": "#665c54",
1018 "peekViewTitleLabel.foreground": "#3c3836",
1019
1020 "merge.currentHeaderBackground": "#45858840",
1021 "merge.currentContentBackground": "#45858820",
1022 "merge.incomingHeaderBackground": "#689d6a40",
1023 "merge.incomingContentBackground": "#689d6a20",
1024 "merge.border": "#fbf1c700",
1025 "editorOverviewRuler.currentContentForeground": "#458588",
1026 "editorOverviewRuler.incomingContentForeground": "#689d6a",
1027 "editorOverviewRuler.commonContentForeground": "#928374",
1028
1029 "panel.border": "#ebdbb2",
1030 "panelTitle.activeForeground": "#3c3836",
1031
1032 "statusBar.background": "#fbf1c7",
1033 "statusBar.border": "#ebdbb2",
1034 "statusBar.foreground": "#3c3836",
1035 "statusBar.debuggingBackground": "#af3a03",
1036 "statusBar.debuggingForeground": "#fbf1c7",
1037 "statusBar.debuggingBorder": "#fbf1c700",
1038 "statusBar.noFolderBackground": "#fbf1c7",
1039 "statusBar.noFolderBorder": "#fbf1c700",
1040
1041 "terminal.ansiBlack": "#ebdbb2",
1042 "terminal.ansiBrightBlack": "#928374",
1043 "terminal.ansiRed": "#cc241d",
1044 "terminal.ansiBrightRed": "#9d0006",
1045 "terminal.ansiGreen": "#98971a",
1046 "terminal.ansiBrightGreen": "#79740e",
1047 "terminal.ansiYellow": "#d79921",
1048 "terminal.ansiBrightYellow": "#b57614",
1049 "terminal.ansiBlue": "#458588",
1050 "terminal.ansiBrightBlue": "#076678",
1051 "terminal.ansiMagenta": "#b16286",
1052 "terminal.ansiBrightMagenta": "#8f3f71",
1053 "terminal.ansiCyan": "#689d6a",
1054 "terminal.ansiBrightCyan": "#427b58",
1055 "terminal.ansiWhite": "#7c6f64",
1056 "terminal.ansiBrightWhite": "#3c3836",
1057 "terminal.foreground": "#3c3836",
1058 "terminal.background": "#fbf1c7",
1059
1060 "titleBar.activeBackground": "#fbf1c7",
1061 "titleBar.activeForeground": "#3c3836",
1062 "titleBar.inactiveBackground": "#fbf1c7",
1063
1064 "gitDecoration.modifiedResourceForeground": "#d79921",
1065 "gitDecoration.deletedResourceForeground": "#cc241d",
1066 "gitDecoration.untrackedResourceForeground": "#98971a",
1067 "gitDecoration.ignoredResourceForeground": "#a89984",
1068 "gitDecoration.conflictingResourceForeground": "#b16286",
1069
1070 "menu.border": "#ebdbb2",
1071 "menu.separatorBackground": "#ebdbb2",
1072
1073 "notebook.cellEditorBackground": "#f2e5bc",
1074 "notebook.focusedCellBorder": "#665c54",
1075 "notebook.cellBorderColor": "#bdae93",
1076 "notebook.focusedEditorBorder": "#bdae93",
1077
1078 "extensionButton.prominentBackground": "#79740e80",
1079 "extensionButton.prominentHoverBackground": "#79740e30",
1080
1081 "textLink.foreground": "#076678",
1082 "textLink.activeForeground": "#458588",
1083 "debugToolBar.background": "#fbf1c7"
1084 },
1085 "semanticTokenColors": {
1086 "constant.builtin": "#8f3f71",
1087 "property": "#076678",
1088 "property:python": "#3c3836",
1089 "parameter": "#076678",
1090 "variable": "#3c3836",
1091 "function": "#427b58",
1092 "function.builtin": "#af3a03",
1093 "method": "#427b58"
1094 }
1095}