diff --git a/frontend/static/themes/_list.json b/frontend/static/themes/_list.json index 2bdfd325244c..11e339b6bd13 100644 --- a/frontend/static/themes/_list.json +++ b/frontend/static/themes/_list.json @@ -1,4 +1,11 @@ [ + { + "name": "witchthorne", + "bgColor": "#36093e", + "mainColor": "#7be000", + "subColor": "#95b295", + "textColor": "#61ff7e" + }, { "name": "dark_note", "bgColor": "#1f1f1f", @@ -1252,4 +1259,4 @@ "subColor": "#fe9841", "textColor": "#dbdeeb" } -] \ No newline at end of file +] diff --git a/frontend/static/themes/witchthorne.css b/frontend/static/themes/witchthorne.css new file mode 100644 index 000000000000..92bd87d91c33 --- /dev/null +++ b/frontend/static/themes/witchthorne.css @@ -0,0 +1,12 @@ +:root { + --bg-color: #36093e; + --main-color: #7be000; + --caret-color: #ffffff; + --sub-color: #95b295; + --sub-alt-color: #4a1961; + --text-color: #61ff7e; + --error-color: #ff0000; + --error-extra-color: #85002c; + --colorful-error-color: #ff0000; + --colorful-error-extra-color: #85002c; + }