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": ["string.interpolated.dollar.shell", "string.interpolated.backtick.shell"],
426 "settings": {
427 "foreground": "#427b58"
428 }
429 },
430
431 {
432 "scope": "keyword.control.directive",
433 "settings": {
434 "foreground": "#427b58"
435 }
436 },
437 {
438 "scope": "support.function.C99",
439 "settings": {
440 "foreground": "#b57614"
441 }
442 },
443
444 {
445 "name": "C# functions & namespace",
446 "scope": [
447 "meta.function.cs",
448 "entity.name.function.cs",
449 "entity.name.type.namespace.cs"
450 ],
451 "settings": {
452 "foreground": "#79740e"
453 }
454 },
455 {
456 "name": "C# Variables",
457 "scope": [
458 "keyword.other.using.cs",
459 "entity.name.variable.field.cs",
460 "entity.name.variable.local.cs",
461 "variable.other.readwrite.cs"
462 ],
463 "settings": {
464 "foreground": "#427b58"
465 }
466 },
467 {
468 "name": "C# This",
469 "scope": ["keyword.other.this.cs", "keyword.other.base.cs"],
470 "settings": {
471 "foreground": "#8f3f71"
472 }
473 },
474
475 {
476 "scope": "meta.scope.prerequisites",
477 "settings": {
478 "foreground": "#b57614"
479 }
480 },
481 {
482 "scope": "entity.name.function.target",
483 "settings": {
484 "foreground": "#79740e",
485 "fontStyle": "bold"
486 }
487 },
488
489 {
490 "name": "coloring of the Java import and package identifiers",
491 "scope": ["storage.modifier.import.java", "storage.modifier.package.java"],
492 "settings": {
493 "foreground": "#665c54"
494 }
495 },
496 {
497 "scope": ["keyword.other.import.java", "keyword.other.package.java"],
498 "settings": {
499 "foreground": "#427b58"
500 }
501 },
502 {
503 "scope": "storage.type.java",
504 "settings": {
505 "foreground": "#b57614"
506 }
507 },
508 {
509 "scope": "storage.type.annotation",
510 "settings": {
511 "foreground": "#076678",
512 "fontStyle": "bold"
513 }
514 },
515 {
516 "scope": "keyword.other.documentation.javadoc",
517 "settings": {
518 "foreground": "#427b58"
519 }
520 },
521 {
522 "scope": "comment.block.javadoc variable.parameter.java",
523 "settings": {
524 "foreground": "#79740e",
525 "fontStyle": "bold"
526 }
527 },
528 {
529 "scope": [
530 "source.java variable.other.object",
531 "source.java variable.other.definition.java"
532 ],
533 "settings": {
534 "foreground": "#3c3836"
535 }
536 },
537
538 {
539 "name": "Lisp optional function parameters",
540 "scope": "meta.function-parameters.lisp",
541 "settings": {
542 "foreground": "#b57614"
543 }
544 },
545
546 {
547 "scope": "markup.underline",
548 "settings": {
549 "fontStyle": "underline"
550 }
551 },
552 {
553 "scope": "string.other.link.title.markdown",
554 "settings": {
555 "foreground": "#928374",
556 "fontStyle": "underline"
557 }
558 },
559 {
560 "scope": "markup.underline.link",
561 "settings": {
562 "foreground": "#8f3f71"
563 }
564 },
565 {
566 "scope": "markup.bold",
567 "settings": {
568 "fontStyle": "bold",
569 "foreground": "#af3a03"
570 }
571 },
572 {
573 "scope": "markup.heading",
574 "settings": {
575 "fontStyle": "bold",
576 "foreground": "#af3a03"
577 }
578 },
579 {
580 "scope": "markup.italic",
581 "settings": {
582 "fontStyle": "italic"
583 }
584 },
585 {
586 "scope": "markup.inserted",
587 "settings": {
588 "foreground": "#79740e"
589 }
590 },
591 {
592 "scope": "markup.deleted",
593 "settings": {
594 "foreground": "#d65d0e"
595 }
596 },
597 {
598 "scope": "markup.changed",
599 "settings": {
600 "foreground": "#af3a03"
601 }
602 },
603 {
604 "scope": "markup.punctuation.quote.beginning",
605 "settings": {
606 "foreground": "#98971a"
607 }
608 },
609 {
610 "scope": "markup.punctuation.list.beginning",
611 "settings": {
612 "foreground": "#076678"
613 }
614 },
615 {
616 "scope": ["markup.inline.raw", "markup.fenced_code.block"],
617 "settings": {
618 "foreground": "#427b58"
619 }
620 },
621
622 {
623 "scope": "string.quoted.double.json",
624 "settings": {
625 "foreground": "#076678"
626 }
627 },
628 {
629 "name": "JSON Level 0",
630 "scope": ["source.json meta.structure.dictionary.json support.type.property-name.json"],
631 "settings": {
632 "foreground": "#79740e"
633 }
634 },
635 {
636 "name": "JSON Level 1",
637 "scope": [
638 "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
639 ],
640 "settings": {
641 "foreground": "#427b58"
642 }
643 },
644 {
645 "name": "JSON Level 2",
646 "scope": [
647 "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"
648 ],
649 "settings": {
650 "foreground": "#8f3f71"
651 }
652 },
653 {
654 "name": "JSON Level 3",
655 "scope": [
656 "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"
657 ],
658 "settings": {
659 "foreground": "#79740e"
660 }
661 },
662
663 {
664 "scope": "entity.other.attribute-name.css",
665 "settings": {
666 "foreground": "#af3a03"
667 }
668 },
669 {
670 "scope": "source.css meta.selector",
671 "settings": {
672 "foreground": "#3c3836"
673 }
674 },
675 {
676 "scope": "support.type.property-name.css",
677 "settings": {
678 "foreground": "#af3a03"
679 }
680 },
681 {
682 "scope": "entity.other.attribute-name.class",
683 "settings": {
684 "foreground": "#79740e"
685 }
686 },
687 {
688 "scope": [
689 "source.css support.function.transform",
690 "source.css support.function.timing-function",
691 "source.css support.function.misc"
692 ],
693 "settings": {
694 "foreground": "#9d0006"
695 }
696 },
697 {
698 "name": "CSS property value",
699 "scope": [
700 "support.property-value",
701 "constant.rgb-value",
702 "support.property-value.scss",
703 "constant.rgb-value.scss"
704 ],
705 "settings": {
706 "foreground": "#d65d0e"
707 }
708 },
709 {
710 "scope": ["entity.name.tag.css"],
711 "settings": {
712 "fontStyle": ""
713 }
714 },
715
716 {
717 "scope": ["punctuation.definition.tag"],
718 "settings": {
719 "foreground": "#076678"
720 }
721 },
722 {
723 "scope": ["text.html entity.name.tag", "text.html punctuation.tag"],
724 "settings": {
725 "foreground": "#427b58",
726 "fontStyle": "bold"
727 }
728 },
729
730 {
731 "scope": ["source.js variable.language"],
732 "settings": {
733 "foreground": "#af3a03"
734 }
735 },
736
737 {
738 "scope": ["source.ts variable.language"],
739 "settings": {
740 "foreground": "#af3a03"
741 }
742 },
743
744 {
745 "scope": ["source.go storage.type"],
746 "settings": {
747 "foreground": "#b57614"
748 }
749 },
750 {
751 "scope": ["source.go entity.name.import"],
752 "settings": {
753 "foreground": "#79740e"
754 }
755 },
756 {
757 "scope": ["source.go keyword.package", "source.go keyword.import"],
758 "settings": {
759 "foreground": "#427b58"
760 }
761 },
762 {
763 "scope": ["source.go keyword.interface", "source.go keyword.struct"],
764 "settings": {
765 "foreground": "#076678"
766 }
767 },
768 {
769 "scope": ["source.go entity.name.type"],
770 "settings": {
771 "foreground": "#3c3836"
772 }
773 },
774 {
775 "scope": ["source.go entity.name.function"],
776 "settings": {
777 "foreground": "#8f3f71"
778 }
779 },
780
781 {
782 "scope": ["keyword.control.cucumber.table"],
783 "settings": {
784 "foreground": "#076678"
785 }
786 },
787
788 {
789 "name": "ReasonML String",
790 "scope": ["source.reason string.double", "source.reason string.regexp"],
791 "settings": {
792 "foreground": "#79740e"
793 }
794 },
795 {
796 "name": "ReasonML equals sign",
797 "scope": ["source.reason keyword.control.less"],
798 "settings": {
799 "foreground": "#427b58"
800 }
801 },
802 {
803 "name": "ReasonML variable",
804 "scope": ["source.reason entity.name.function"],
805 "settings": {
806 "foreground": "#076678"
807 }
808 },
809 {
810 "name": "ReasonML property",
811 "scope": ["source.reason support.property-value", "source.reason entity.name.filename"],
812 "settings": {
813 "foreground": "#af3a03"
814 }
815 },
816
817 {
818 "name": "Powershell member",
819 "scope": ["source.powershell variable.other.member.powershell"],
820 "settings": {
821 "foreground": "#af3a03"
822 }
823 },
824 {
825 "name": "Powershell function",
826 "scope": ["source.powershell support.function.powershell"],
827 "settings": {
828 "foreground": "#b57614"
829 }
830 },
831 {
832 "name": "Powershell function attribute",
833 "scope": ["source.powershell support.function.attribute.powershell"],
834 "settings": {
835 "foreground": "#665c54"
836 }
837 },
838 {
839 "name": "Powershell hashtable member",
840 "scope": [
841 "source.powershell meta.hashtable.assignment.powershell variable.other.readwrite.powershell"
842 ],
843 "settings": {
844 "foreground": "#af3a03"
845 }
846 }
847 ],
848 "colors": {
849 "focusBorder": "#ebdbb2",
850 "foreground": "#3c3836",
851 "widget.shadow": "#fbf1c730",
852 "selection.background": "#689d6a80",
853 "errorForeground": "#9d0006",
854
855 "button.background": "#45858880",
856 "button.foreground": "#3c3836",
857 "button.hoverBackground": "#45858860",
858
859 "dropdown.background": "#fbf1c7",
860 "dropdown.border": "#ebdbb2",
861 "dropdown.foreground": "#3c3836",
862
863 "input.background": "#3c383605",
864 "input.border": "#ebdbb2",
865 "input.foreground": "#3c3836",
866 "input.placeholderForeground": "#3c383660",
867 "inputValidation.errorBorder": "#9d0006",
868 "inputValidation.errorBackground": "#cc241d80",
869 "inputValidation.infoBorder": "#076678",
870 "inputValidation.infoBackground": "#45858880",
871 "inputValidation.warningBorder": "#b57614",
872 "inputValidation.warningBackground": "#d7992180",
873 "inputOption.activeBorder": "#3c383660",
874
875 "scrollbar.shadow": "#fbf1c7",
876 "scrollbarSlider.activeBackground": "#689d6a",
877 "scrollbarSlider.hoverBackground": "#bdae93",
878 "scrollbarSlider.background": "#d5c4a199",
879
880 "badge.background": "#8f3f71",
881 "badge.foreground": "#fbf1c7",
882
883 "progressBar.background": "#689d6a",
884
885 "list.activeSelectionBackground": "#ebdbb280",
886 "list.activeSelectionForeground": "#af3a03",
887 "list.hoverBackground": "#ebdbb280",
888 "list.hoverForeground": "#504945",
889 "list.focusBackground": "#ebdbb2",
890 "list.focusForeground": "#3c3836",
891 "list.inactiveSelectionForeground": "#d65d0e",
892 "list.inactiveSelectionBackground": "#ebdbb280",
893 "list.dropBackground": "#ebdbb2",
894 "list.highlightForeground": "#689d6a",
895
896 "sideBar.background": "#fbf1c7",
897 "sideBar.foreground": "#504945",
898 "sideBar.border": "#ebdbb2",
899 "sideBarTitle.foreground": "#3c3836",
900 "sideBarSectionHeader.background": "#fbf1c700",
901 "sideBarSectionHeader.foreground": "#3c3836",
902
903 "activityBar.background": "#fbf1c7",
904 "activityBar.foreground": "#3c3836",
905 "activityBar.border": "#ebdbb2",
906 "activityBarBadge.background": "#458588",
907 "activityBarBadge.foreground": "#ebdbb2",
908
909 "editorGroup.border": "#ebdbb2",
910 "editorGroup.dropBackground": "#ebdbb260",
911 "editorGroupHeader.noTabsBackground": "#ebdbb2",
912 "editorGroupHeader.tabsBackground": "#fbf1c7",
913 "editorGroupHeader.tabsBorder": "#ebdbb2",
914
915 "tab.border": "#fbf1c700",
916 "tab.activeBackground": "#ebdbb2",
917 "tab.activeBorder": "#d65d0e",
918 "tab.activeForeground": "#3c3836",
919 "tab.inactiveForeground": "#7c6f64",
920 "tab.inactiveBackground": "#fbf1c7",
921 "tab.unfocusedActiveForeground": "#7c6f64",
922 "tab.unfocusedActiveBorder": "#fbf1c700",
923 "tab.unfocusedInactiveForeground": "#928374",
924
925 "editor.background": "#fbf1c7",
926 "editor.foreground": "#3c3836",
927 "editorLineNumber.foreground": "#bdae93",
928 "editorCursor.foreground": "#3c3836",
929 "editor.selectionBackground": "#689d6a40",
930 "editor.selectionHighlightBackground": "#b5761440",
931 "editor.hoverHighlightBackground": "#689d6a50",
932 "editorLink.activeForeground": "#3c3836",
933 "editor.findMatchBackground": "#07667870",
934 "editor.findMatchHighlightBackground": "#af3a0330",
935 "editor.findRangeHighlightBackground": "#07667870",
936 "editor.lineHighlightBackground": "#ebdbb260",
937 "editor.lineHighlightBorder": "#ebdbb200",
938 "editorWhitespace.foreground": "#7c6f6420",
939 "editorRuler.foreground": "#7c6f6440",
940 "editorCodeLens.foreground": "#7c6f6490",
941 "editorBracketMatch.border": "#fbf1c700",
942 "editorBracketMatch.background": "#92837480",
943 "editorHoverWidget.background": "#fbf1c7",
944 "editorHoverWidget.border": "#ebdbb2",
945 "editorOverviewRuler.border": "#fbf1c700",
946 "editorOverviewRuler.findMatchForeground": "#665c54",
947 "editorOverviewRuler.rangeHighlightForeground": "#665c54",
948 "editorOverviewRuler.selectionHighlightForeground": "#bdae93",
949 "editorOverviewRuler.wordHighlightForeground": "#bdae93",
950 "editorOverviewRuler.wordHighlightStrongForeground": "#bdae93",
951 "editorOverviewRuler.modifiedForeground": "#076678",
952 "editorOverviewRuler.addedForeground": "#076678",
953 "editorOverviewRuler.deletedForeground": "#076678",
954 "editorOverviewRuler.errorForeground": "#9d0006",
955 "editorOverviewRuler.warningForeground": "#d79921",
956 "editorOverviewRuler.infoForeground": "#8f3f71",
957 "editorGutter.background": "#fbf1c700",
958 "editorGutter.modifiedBackground": "#076678",
959 "editorGutter.addedBackground": "#79740e",
960 "editorGutter.deletedBackground": "#9d0006",
961 "editorError.foreground": "#cc241d",
962 "editorWarning.foreground": "#d79921",
963 "editorInfo.foreground": "#458588",
964
965 "editorBracketHighlight.foreground1": "#b16286",
966 "editorBracketHighlight.foreground2": "#458588",
967 "editorBracketHighlight.foreground3": "#689d6a",
968 "editorBracketHighlight.foreground4": "#98971a",
969 "editorBracketHighlight.foreground5": "#d79921",
970 "editorBracketHighlight.foreground6": "#d65d0e",
971 "editorBracketHighlight.unexpectedBracket.foreground": "#cc241d",
972
973 "diffEditor.insertedTextBackground": "#79740e30",
974 "diffEditor.removedTextBackground": "#9d000630",
975
976 "editorWidget.background": "#fbf1c7",
977 "editorWidget.border": "#ebdbb2",
978 "editorSuggestWidget.background": "#fbf1c7",
979 "editorSuggestWidget.foreground": "#3c3836",
980 "editorSuggestWidget.highlightForeground": "#689d6a",
981 "editorSuggestWidget.selectedBackground": "#ebdbb260",
982 "editorSuggestWidget.border": "#ebdbb2",
983
984 "peekView.border": "#ebdbb2",
985 "peekViewEditor.background": "#ebdbb270",
986 "peekViewEditor.matchHighlightBackground": "#d5c4a1",
987 "peekViewEditorGutter.background": "#ebdbb270",
988 "peekViewResult.background": "#ebdbb270",
989 "peekViewResult.fileForeground": "#3c3836",
990 "peekViewResult.selectionBackground": "#45858820",
991 "peekViewResult.selectionForeground": "#3c3836",
992 "peekViewResult.lineForeground": "#3c3836",
993 "peekViewResult.matchHighlightBackground": "#d5c4a1",
994 "peekViewTitle.background": "#ebdbb270",
995 "peekViewTitleDescription.foreground": "#665c54",
996 "peekViewTitleLabel.foreground": "#3c3836",
997
998 "merge.currentHeaderBackground": "#45858840",
999 "merge.currentContentBackground": "#45858820",
1000 "merge.incomingHeaderBackground": "#689d6a40",
1001 "merge.incomingContentBackground": "#689d6a20",
1002 "merge.border": "#fbf1c700",
1003 "editorOverviewRuler.currentContentForeground": "#458588",
1004 "editorOverviewRuler.incomingContentForeground": "#689d6a",
1005 "editorOverviewRuler.commonContentForeground": "#928374",
1006
1007 "panel.border": "#ebdbb2",
1008 "panelTitle.activeForeground": "#3c3836",
1009
1010 "statusBar.background": "#fbf1c7",
1011 "statusBar.border": "#ebdbb2",
1012 "statusBar.foreground": "#3c3836",
1013 "statusBar.debuggingBackground": "#af3a03",
1014 "statusBar.debuggingForeground": "#fbf1c7",
1015 "statusBar.debuggingBorder": "#fbf1c700",
1016 "statusBar.noFolderBackground": "#fbf1c7",
1017 "statusBar.noFolderBorder": "#fbf1c700",
1018
1019 "terminal.ansiBlack": "#ebdbb2",
1020 "terminal.ansiBrightBlack": "#928374",
1021 "terminal.ansiRed": "#cc241d",
1022 "terminal.ansiBrightRed": "#9d0006",
1023 "terminal.ansiGreen": "#98971a",
1024 "terminal.ansiBrightGreen": "#79740e",
1025 "terminal.ansiYellow": "#d79921",
1026 "terminal.ansiBrightYellow": "#b57614",
1027 "terminal.ansiBlue": "#458588",
1028 "terminal.ansiBrightBlue": "#076678",
1029 "terminal.ansiMagenta": "#b16286",
1030 "terminal.ansiBrightMagenta": "#8f3f71",
1031 "terminal.ansiCyan": "#689d6a",
1032 "terminal.ansiBrightCyan": "#427b58",
1033 "terminal.ansiWhite": "#7c6f64",
1034 "terminal.ansiBrightWhite": "#3c3836",
1035 "terminal.foreground": "#3c3836",
1036 "terminal.background": "#fbf1c7",
1037
1038 "titleBar.activeBackground": "#fbf1c7",
1039 "titleBar.activeForeground": "#3c3836",
1040 "titleBar.inactiveBackground": "#fbf1c7",
1041
1042 "gitDecoration.modifiedResourceForeground": "#d79921",
1043 "gitDecoration.deletedResourceForeground": "#cc241d",
1044 "gitDecoration.untrackedResourceForeground": "#98971a",
1045 "gitDecoration.ignoredResourceForeground": "#a89984",
1046 "gitDecoration.conflictingResourceForeground": "#b16286",
1047
1048 "menu.border": "#ebdbb2",
1049 "menu.separatorBackground": "#ebdbb2",
1050
1051 "notebook.cellEditorBackground": "#f2e5bc",
1052 "notebook.focusedCellBorder": "#665c54",
1053 "notebook.cellBorderColor": "#bdae93",
1054 "notebook.focusedEditorBorder": "#bdae93",
1055
1056 "extensionButton.prominentBackground": "#79740e80",
1057 "extensionButton.prominentHoverBackground": "#79740e30",
1058
1059 "textLink.foreground": "#076678",
1060 "textLink.activeForeground": "#458588",
1061 "debugToolBar.background": "#fbf1c7"
1062 },
1063 "semanticTokenColors": {
1064 "constant.builtin": "#8f3f71",
1065 "property": "#076678",
1066 "property:python": "#3c3836",
1067 "parameter": "#076678",
1068 "variable": "#3c3836",
1069 "function": "#427b58",
1070 "function.builtin": "#af3a03",
1071 "method": "#427b58"
1072 }
1073}