diff --git a/static/themes/_list.json b/static/themes/_list.json index a2274d78d..7782a8d2a 100644 --- a/static/themes/_list.json +++ b/static/themes/_list.json @@ -563,5 +563,10 @@ "name": "ez_mode", "bgColor": "#0171cd", "textColor": "#fa62d5" + }, + { + "name": "vscode", + "bgColor": "#1E1E1E", + "textColor": "#007acc" } ] diff --git a/static/themes/vscode.css b/static/themes/vscode.css new file mode 100644 index 000000000..60ddc36de --- /dev/null +++ b/static/themes/vscode.css @@ -0,0 +1,11 @@ +:root { + --bg-color: #1e1e1e; + --main-color: #007acc; + --caret-color: #569cd6; + --sub-color: #4d4d4d; + --text-color: #d4d4d4; + --error-color: #f44747; + --error-extra-color: #f44747; + --colorful-error-color: #f44747; + --colorful-error-extra-color: #f44747; +}