From becb66dab6f3984c6534efa19ccc2eb06a2eca08 Mon Sep 17 00:00:00 2001 From: mizaagi <126592834+mizaagi@users.noreply.github.com> Date: Mon, 26 Feb 2024 06:53:37 -0600 Subject: [PATCH] feat(theme): add anti hero theme (mizaagi) (#5018) * Create anti_hero.css * Update _list.json * updated colors * Update anti_hero.css fix color scheme * Update _list.json fix color scheme * Update anti_hero.css hopefully the final change to this theme. * Update _list.json hopefully the final change to this theme. * update text color * Update anti_hero.css New error color fix --------- Co-authored-by: Jack --- frontend/static/themes/_list.json | 7 +++++++ frontend/static/themes/anti_hero.css | 12 ++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 frontend/static/themes/anti_hero.css diff --git a/frontend/static/themes/_list.json b/frontend/static/themes/_list.json index 5ffb03e76ebc..228300c58b6a 100644 --- a/frontend/static/themes/_list.json +++ b/frontend/static/themes/_list.json @@ -1195,5 +1195,12 @@ "mainColor": "#c13117", "subColor": "#717977", "textColor": "#490909" + }, + { + "name": "anti_hero", + "bgColor": "#00002e", + "mainColor": "#ffadad", + "subColor": "#ff3d8b", + "textColor": "#f1deef" } ] diff --git a/frontend/static/themes/anti_hero.css b/frontend/static/themes/anti_hero.css new file mode 100644 index 000000000000..6924dfa4a09e --- /dev/null +++ b/frontend/static/themes/anti_hero.css @@ -0,0 +1,12 @@ +:root { + --bg-color: #00002e; + --main-color: #ffadad; + --caret-color: #ffffff; + --sub-color: #ff3d8b; + --sub-alt-color: #060548; + --text-color: #f1deef; + --error-color: #8fecff; + --error-extra-color: #558cab; + --colorful-error-color: #8fecff; + --colorful-error-extra-color: #558cab; +}