diff --git a/frontend/static/themes/_list.json b/frontend/static/themes/_list.json index 075405c92..5dd52d2b2 100644 --- a/frontend/static/themes/_list.json +++ b/frontend/static/themes/_list.json @@ -1,5 +1,10 @@ [ { + "name" : "viridescent", + "bgColor": "#2C3333", + "mainColor": "#95d5b2" + } + ,{ "name": "dark", "bgColor": "#111", "mainColor": "#eee" diff --git a/frontend/static/themes/viridescent.css b/frontend/static/themes/viridescent.css new file mode 100644 index 000000000..74100b7dd --- /dev/null +++ b/frontend/static/themes/viridescent.css @@ -0,0 +1,12 @@ +:root{ + --bg-color: #2C3333; + --main-color: #95d5b2; + --caret-color: #f0d3c9; + --sub-color: #84a98c; + --sub-alt-color: #232828; + --text-color: #e9f5db; + --error-color: #FF4646; + --error-extra-color: #ab2f2f; + --colorful-error-color: #bd4141; + --colorful-error-extra-color: #883434; +} \ No newline at end of file