From 132af980938f44606a8c4d39f86201f347e29a03 Mon Sep 17 00:00:00 2001 From: tuzu128 <89007915+tuzu128@users.noreply.github.com> Date: Mon, 24 Apr 2023 16:05:11 +0200 Subject: [PATCH] Created Everblush theme (#4211) tuzu128 * Added everblush theme * Added Everblush theme to _list.json --------- Co-authored-by: TheTuzu --- frontend/static/themes/_list.json | 7 +++++++ frontend/static/themes/everblush.css | 12 ++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 frontend/static/themes/everblush.css diff --git a/frontend/static/themes/_list.json b/frontend/static/themes/_list.json index c7d6b9115..b629b25a1 100644 --- a/frontend/static/themes/_list.json +++ b/frontend/static/themes/_list.json @@ -1160,5 +1160,12 @@ "mainColor": "#d65ccc", "subColor": "#787d82", "textColor": "#d1d0c5" + }, + { + "name": "everblush", + "bgColor": "#141b1e", + "mainColor": "#8ccf7e", + "subColor": "#838887", + "textColor": "#dadada" } ] diff --git a/frontend/static/themes/everblush.css b/frontend/static/themes/everblush.css new file mode 100644 index 000000000..6632386ef --- /dev/null +++ b/frontend/static/themes/everblush.css @@ -0,0 +1,12 @@ +:root { + --bg-color: #141b1e; + --caret-color: #6cbfbf; + --main-color: #8ccf7e; + --sub-color: #838887; + --sub-alt-color: #232a2d; + --text-color: #dadada; + --error-color: #e57474; + --error-extra-color: #ef7e7e; + --colorful-error-color: #e57474; + --colorful-error-extra-color: #ef7e7e; +}