|
| 1 | +/** |
| 2 | + * Use `Developer: Generate Color Theme From Current Settings` to generate themes |
| 3 | + * using your current VSCode settings. |
| 4 | + * |
| 5 | + * See: https://code.visualstudio.com/docs/getstarted/themes |
| 6 | + */ |
| 7 | + |
| 8 | +:root { |
| 9 | + --vscode-editor-background: #1f1f1f; /* "editor.background" */ |
| 10 | + --vscode-editor-foreground: #cccccc; /* "editor.foreground" */ |
| 11 | + --vscode-menu-background: #1f1f1f; /* "menu.background" */ |
| 12 | + --vscode-menu-foreground: #cccccc; /* "menu.foreground" */ |
| 13 | + --vscode-button-background: #0078d4; /* "button.background" */ |
| 14 | + --vscode-button-foreground: #ffffff; /* "button.foreground" */ |
| 15 | + --vscode-button-secondaryBackground: #313131; /* "button.secondaryBackground" */ |
| 16 | + --vscode-button-secondaryForeground: #cccccc; /* "button.secondaryForeground" */ |
| 17 | + --vscode-disabledForeground: red; /* "disabledForeground" */ |
| 18 | + --vscode-descriptionForeground: #9d9d9d; /* "descriptionForeground" */ |
| 19 | + --vscode-focusBorder: #0078d4; /* "focusBorder" */ |
| 20 | + --vscode-errorForeground: #f85149; /* "errorForeground" */ |
| 21 | + --vscode-widget-border: #313131; /* "widget.border" */ |
| 22 | + --vscode-input-background: #313131; /* "input.background" */ |
| 23 | + --vscode-input-foreground: #cccccc; /* "input.foreground" */ |
| 24 | + --vscode-input-border: #3c3c3c; /* "input.border" */ |
| 25 | + |
| 26 | + /* I can't find these in the output of `Developer: Generate Color Theme From Current Settings` */ |
| 27 | + --vscode-charts-red: red; |
| 28 | + --vscode-charts-blue: blue; |
| 29 | + --vscode-charts-yellow: yellow; |
| 30 | + --vscode-charts-orange: orange; |
| 31 | + --vscode-charts-green: green; |
| 32 | +} |
0 commit comments