|
| 1 | +{ |
| 2 | + "folders": [ |
| 3 | + { |
| 4 | + "path": "." |
| 5 | + } |
| 6 | + ], |
| 7 | + "settings": { |
| 8 | + "workbench.colorCustomizations": { |
| 9 | + "editor.background": "#1C1C1C", |
| 10 | + "editor.foreground": "#D4D4D4", |
| 11 | + "editorCursor.foreground": "#FFFFFF", |
| 12 | + "editor.lineHighlightBackground": "#242424", |
| 13 | + "editorLineNumber.foreground": "#555555", |
| 14 | + "editor.selectionBackground": "#4A4A4A", |
| 15 | + "editor.selectionHighlightBackground": "#1A1A1A60", |
| 16 | + "editor.wordHighlightBackground": "#2A2A2A60", |
| 17 | + "editor.wordHighlightStrongBackground": "#3A3A3A60", |
| 18 | + "activityBar.background": "#1C1C1C", |
| 19 | + "sideBar.background": "#1C1C1C", |
| 20 | + "sideBar.foreground": "#D4D4D4", |
| 21 | + "sideBarSectionHeader.background": "#2A2A2A", |
| 22 | + "titleBar.activeBackground": "#1C1C1C", |
| 23 | + "titleBar.activeForeground": "#FFFFFF", |
| 24 | + "statusBar.background": "#1C1C1C", |
| 25 | + "statusBar.foreground": "#FFFFFF", |
| 26 | + "panel.background": "#1C1C1C", |
| 27 | + "panel.border": "#343434", |
| 28 | + "terminal.background": "#1C1C1C", |
| 29 | + "terminal.foreground": "#D4D4D4", |
| 30 | + "button.background": "#343434", |
| 31 | + "button.foreground": "#FFFFFF", |
| 32 | + "dropdown.background": "#2A2A2A", |
| 33 | + "dropdown.foreground": "#D4D4D4", |
| 34 | + "input.background": "#2A2A2A", |
| 35 | + "input.foreground": "#FFFFFF", |
| 36 | + "scrollbarSlider.background": "#3A3A3A", |
| 37 | + "scrollbarSlider.hoverBackground": "#4A4A4A", |
| 38 | + "scrollbarSlider.activeBackground": "#5A5A5A", |
| 39 | + "tab.activeBackground": "#1C1C1C", |
| 40 | + "tab.activeForeground": "#FFFFFF", |
| 41 | + "tab.inactiveBackground": "#2A2A2A", |
| 42 | + "tab.inactiveForeground": "#A0A0A0", |
| 43 | + "tab.border": "#343434", |
| 44 | + "editorGroupHeader.tabsBackground": "#1C1C1C", |
| 45 | + "editorGroupHeader.tabsBorder": "#343434", |
| 46 | + "minimap.background": "#1C1C1C", |
| 47 | + "minimapSlider.background": "#3A3A3A", |
| 48 | + "minimapSlider.hoverBackground": "#4A4A4A", |
| 49 | + "minimapSlider.activeBackground": "#5A5A5A" |
| 50 | + }, |
| 51 | + "editor.tokenColorCustomizations": { |
| 52 | + "textMateRules": [ |
| 53 | + { |
| 54 | + "scope": "comment", |
| 55 | + "settings": { |
| 56 | + "foreground": "#00A656", |
| 57 | + "fontStyle": "italic" |
| 58 | + } |
| 59 | + }, |
| 60 | + { |
| 61 | + "scope": ["keyword", "storage.type"], |
| 62 | + "settings": { |
| 63 | + "foreground": "#1A84FF" |
| 64 | + } |
| 65 | + }, |
| 66 | + { |
| 67 | + "scope": "string", |
| 68 | + "settings": { |
| 69 | + "foreground": "#FB8700" |
| 70 | + } |
| 71 | + }, |
| 72 | + { |
| 73 | + "scope": "variable.language", |
| 74 | + "settings": { |
| 75 | + "foreground": "#00A656" |
| 76 | + } |
| 77 | + }, |
| 78 | + { |
| 79 | + "scope": "variable.other", |
| 80 | + "settings": { |
| 81 | + "foreground": "#E6C9B7" |
| 82 | + } |
| 83 | + }, |
| 84 | + { |
| 85 | + "scope": "constant.numeric", |
| 86 | + "settings": { |
| 87 | + "foreground": "#FB8700" |
| 88 | + } |
| 89 | + }, |
| 90 | + { |
| 91 | + "scope": "entity.name.function", |
| 92 | + "settings": { |
| 93 | + "foreground": "#1A84FF" |
| 94 | + } |
| 95 | + }, |
| 96 | + { |
| 97 | + "scope": "entity.name.type", |
| 98 | + "settings": { |
| 99 | + "foreground": "#00A656" |
| 100 | + } |
| 101 | + } |
| 102 | + ] |
| 103 | + } |
| 104 | + } |
| 105 | +} |
0 commit comments