|
| 1 | +{ |
| 2 | + "name": "Arduino default", |
| 3 | + "type": "default", |
| 4 | + "colors": { |
| 5 | + "list.highlightForeground": "#008184", |
| 6 | + "list.activeSelectionForeground": "#4e5b61", |
| 7 | + "list.activeSelectionBackground": "#dae3e3", |
| 8 | + "list.inactiveSelectionForeground": "#4e5b61", |
| 9 | + "list.inactiveSelectionBackground": "#dae3e3", |
| 10 | + "list.hoverBackground": "#ecf1f1", |
| 11 | + "progressBar.background": "#005c5f", |
| 12 | + "editor.background": "#ffffff", |
| 13 | + "editor.foreground": "#4e5b61", |
| 14 | + "editor.lineHighlightBackground": "#434f5410", |
| 15 | + "editor.selectionBackground": "#f1c40f", |
| 16 | + "editorCursor.foreground": "#434f54", |
| 17 | + "editorWhitespace.foreground": "#bfbfbf", |
| 18 | + "editorWidget.background": "#f7f9f9", |
| 19 | + "focusBorder": "#7fcbcd", |
| 20 | + "menubar.selectionBackground": "#ffffff", |
| 21 | + "menubar.selectionForeground": "#212121", |
| 22 | + "menu.selectionBackground": "#dae3e3", |
| 23 | + "menu.selectionForeground": "#212121", |
| 24 | + "editorGroupHeader.tabsBackground": "#ecf1f1", |
| 25 | + "button.background": "#7fcbcd", |
| 26 | + "titleBar.activeBackground": "#006d70", |
| 27 | + "titleBar.activeForeground": "#f7f9f9", |
| 28 | + "terminal.background": "#000000", |
| 29 | + "terminal.foreground": "#e0e0e0", |
| 30 | + "dropdown.border": "#f7f9f9", |
| 31 | + "dropdown.background": "#ffffff", |
| 32 | + "dropdown.foreground": "#4e5b61", |
| 33 | + "activityBar.background": "#ecf1f1", |
| 34 | + "activityBar.foreground": "#4e5b61", |
| 35 | + "activityBar.inactiveForeground": "#bdc7c7", |
| 36 | + "activityBar.activeBorder": "#008184", |
| 37 | + "statusBar.background": "#006d70", |
| 38 | + "secondaryButton.background": "#ff000000", |
| 39 | + "secondaryButton.foreground": "#008184", |
| 40 | + "secondaryButton.hoverBackground": "#dae3e3", |
| 41 | + "arduino.branding.primary": "#008184", |
| 42 | + "arduino.branding.secondary": "#b5c8c9", |
| 43 | + "arduino.foreground": "#edf1f1", |
| 44 | + "arduino.output.foreground": "#ffffff", |
| 45 | + "arduino.output.background": "#000000", |
| 46 | + "arduino.toolbar.hoverBackground": "#f7f9f9", |
| 47 | + "sideBar.background": "#f7f9f9", |
| 48 | + "input.background": "#ffffff", |
| 49 | + "foreground": "#4e5b61", |
| 50 | + "settings.headerForeground": "#4e5b61", |
| 51 | + "tree.indentGuidesStroke": "#dae3e3", |
| 52 | + "tab.unfocusedActiveForeground": "#4e5b61", |
| 53 | + "tab.inactiveBackground": "#ecf1f1" |
| 54 | + }, |
| 55 | + "tokenColors": [ |
| 56 | + { |
| 57 | + "name": "", |
| 58 | + "settings": { |
| 59 | + "foreground": "#434f54" |
| 60 | + } |
| 61 | + }, |
| 62 | + { |
| 63 | + "name": "Comments", |
| 64 | + "scope": "comment", |
| 65 | + "settings": { |
| 66 | + "foreground": "#95a5a6cc" |
| 67 | + } |
| 68 | + }, |
| 69 | + { |
| 70 | + "name": "Keywords Attributes", |
| 71 | + "scope": [ |
| 72 | + "storage", |
| 73 | + "support", |
| 74 | + "string.quoted.single.c" |
| 75 | + ], |
| 76 | + "settings": { |
| 77 | + "foreground": "#00979D" |
| 78 | + } |
| 79 | + }, |
| 80 | + { |
| 81 | + "name": "literal", |
| 82 | + "scope": [ |
| 83 | + "meta.function.c", |
| 84 | + "entity.name.function", |
| 85 | + "meta.function-call.c", |
| 86 | + "variable.other" |
| 87 | + ], |
| 88 | + "settings": { |
| 89 | + "foreground": "#D35400" |
| 90 | + } |
| 91 | + }, |
| 92 | + { |
| 93 | + "name": "punctuation", |
| 94 | + "scope": [ |
| 95 | + "punctuation.section", |
| 96 | + "meta.function-call.c", |
| 97 | + "meta.block.c", |
| 98 | + "meta.function.c", |
| 99 | + "variable", |
| 100 | + "variable.name" |
| 101 | + ], |
| 102 | + "settings": { |
| 103 | + "foreground": "#434f54" |
| 104 | + } |
| 105 | + }, |
| 106 | + { |
| 107 | + "name": "function preprocessor", |
| 108 | + "scope": [ |
| 109 | + "entity.name.function.preprocessor.c", |
| 110 | + "meta.preprocessor.macro.c" |
| 111 | + ], |
| 112 | + "settings": { |
| 113 | + "foreground": "#9e846d" |
| 114 | + } |
| 115 | + }, |
| 116 | + { |
| 117 | + "name": "constants", |
| 118 | + "scope": [ |
| 119 | + "string.quoted.double", |
| 120 | + "string.quoted.other.lt-gt", |
| 121 | + "constant" |
| 122 | + ], |
| 123 | + "settings": { |
| 124 | + "foreground": "#005C5F" |
| 125 | + } |
| 126 | + }, |
| 127 | + { |
| 128 | + "name": "meta keywords", |
| 129 | + "scope": [ |
| 130 | + "keyword.control", |
| 131 | + "meta.preprocessor.c" |
| 132 | + ], |
| 133 | + "settings": { |
| 134 | + "foreground": "#728E00" |
| 135 | + } |
| 136 | + }, |
| 137 | + { |
| 138 | + "name": "numeric preprocessor", |
| 139 | + "scope": [ |
| 140 | + "meta.preprocessor.macro.c", |
| 141 | + "constant.numeric.preprocessor.c", |
| 142 | + "meta.preprocessor.c" |
| 143 | + ], |
| 144 | + "settings": { |
| 145 | + "foreground": "#434f54" |
| 146 | + } |
| 147 | + } |
| 148 | + ] |
| 149 | +} |
0 commit comments