diff --git a/static/themes/_list.json b/static/themes/_list.json index 7782a8d2a..b426588ab 100644 --- a/static/themes/_list.json +++ b/static/themes/_list.json @@ -568,5 +568,10 @@ "name": "vscode", "bgColor": "#1E1E1E", "textColor": "#007acc" + }, + { + "name": "material", + "bgColor": "#263238", + "textColor": "#80cbc4" } ] diff --git a/static/themes/material.css b/static/themes/material.css new file mode 100644 index 000000000..7d1b53421 --- /dev/null +++ b/static/themes/material.css @@ -0,0 +1,11 @@ +:root { + --bg-color: #263238; + --main-color: #80cbc4; + --caret-color: #80cbc4; + --sub-color: #4c6772; + --text-color: #e6edf3; + --error-color: #fb4934; + --error-extra-color: #cc241d; + --colorful-error-color: #fb4934; + --colorful-error-extra-color: #cc241d; +}