diff --git a/static/themes/_list.json b/static/themes/_list.json index b59e46007..dad190542 100644 --- a/static/themes/_list.json +++ b/static/themes/_list.json @@ -543,5 +543,15 @@ "name": "midnight", "bgColor": "#0c0e12", "textColor": "#525f7a" + }, + { + "name": "blueberry_light", + "bgColor": "#dae0f5", + "textColor": "#678198" + }, + { + "name": "blueberry_dark", + "bgColor": "#212b42", + "textColor": "#91b4d5" } ] diff --git a/static/themes/blueberry_dark.css b/static/themes/blueberry_dark.css new file mode 100644 index 000000000..5c883bee0 --- /dev/null +++ b/static/themes/blueberry_dark.css @@ -0,0 +1,15 @@ +:root { + --bg-color: #212b42; + --main-color: #add7ff; + --caret-color: #11d964; + --sub-color: #5c7da5; + --text-color: #91b4d5; + --error-color: #df4576; + --error-extra-color: #d996ac; + --colorful-error-color: #df4576; + --colorful-error-extra-color: #d996ac; +} + +#top .logo .bottom { + color: #962f7e; +} diff --git a/static/themes/blueberry_light.css b/static/themes/blueberry_light.css new file mode 100644 index 000000000..8b13ec51f --- /dev/null +++ b/static/themes/blueberry_light.css @@ -0,0 +1,15 @@ +:root { + --bg-color: #dae0f5; + --main-color: #506477; + --caret-color: #06bd80; + --sub-color: #92a4be; + --text-color: #678198; + --error-color: #df4576; + --error-extra-color: #d996ac; + --colorful-error-color: #df4576; + --colorful-error-extra-color: #d996ac; +} + +#top .logo .bottom { + color: #df4576; +}