From 426694afa1785e7b2034c69cb4b318a6a93d1d0e Mon Sep 17 00:00:00 2001 From: Ehan Date: Mon, 2 Oct 2023 10:42:25 -0400 Subject: [PATCH] impr(themes): update nord and purpurite (ehanahamed) (#4668) * Update nord theme * Update purpurite (now "purpleish") theme * Update theme list * Update Purpleish theme * Update nord theme --- frontend/static/themes/_list.json | 16 ++++++++-------- frontend/static/themes/nord.css | 20 ++++++++++---------- frontend/static/themes/purpleish.css | 12 ++++++++++++ frontend/static/themes/purpurite.css | 24 ------------------------ 4 files changed, 30 insertions(+), 42 deletions(-) create mode 100644 frontend/static/themes/purpleish.css delete mode 100644 frontend/static/themes/purpurite.css diff --git a/frontend/static/themes/_list.json b/frontend/static/themes/_list.json index c0a3623b3..ee653fc0a 100644 --- a/frontend/static/themes/_list.json +++ b/frontend/static/themes/_list.json @@ -156,9 +156,9 @@ { "name": "nord", "bgColor": "#242933", - "mainColor": "#d8dee9", - "subColor": "#617b94", - "textColor": "#d8dee9" + "mainColor": "#88C0D0", + "subColor": "#2E3440", + "textColor": "#88C0D0" }, { "name": "mr_sleeves", @@ -1127,11 +1127,11 @@ "textColor": "#e6c7a8" }, { - "name": "purpurite", - "bgColor": "#1f2533", - "mainColor": "#9999ff", - "subColor": "#ccddff", - "textColor": "#9999ff" + "name": "purpleish", + "bgColor": "#1e1e32", + "mainColor": "#7a52cc", + "subColor": "#3d3d66", + "textColor": "#7a52cc" }, { "name": "nord_light", diff --git a/frontend/static/themes/nord.css b/frontend/static/themes/nord.css index cd6f2228b..d9d5c6385 100644 --- a/frontend/static/themes/nord.css +++ b/frontend/static/themes/nord.css @@ -1,12 +1,12 @@ :root { - --bg-color: #242933; - --caret-color: #d8dee9; - --main-color: #d8dee9; - --sub-color: #617b94; - --sub-alt-color: #1b1f27; - --text-color: #d8dee9; - --error-color: #bf616a; - --error-extra-color: #793e44; - --colorful-error-color: #bf616a; - --colorful-error-extra-color: #793e44; + --bg-color: #242933; + --caret-color: #ECEFF4; + --main-color: #88C0D0; + --sub-color: #929aaa; + --sub-alt-color: #2E3440; + --text-color: #D8DEE9; + --error-color: #bf616a; + --error-extra-color: #793e44; + --colorful-error-color: #bf616a; + --colorful-error-extra-color: #793e44 } diff --git a/frontend/static/themes/purpleish.css b/frontend/static/themes/purpleish.css new file mode 100644 index 000000000..d79dc2875 --- /dev/null +++ b/frontend/static/themes/purpleish.css @@ -0,0 +1,12 @@ +:root { + --bg-color: #1e1e32; + --main-color: #7a52cc; + --caret-color: #7a52cc; + --sub-color: #5c5c99; + --sub-alt-color: #181829; + --text-color: #a3a3cc; + --error-color: #ff6666; + --error-extra-color: #ff6666; + --colorful-error-color: #ff6666; + --colorful-error-extra-color: #ff6666; +} diff --git a/frontend/static/themes/purpurite.css b/frontend/static/themes/purpurite.css deleted file mode 100644 index 5ac8782f3..000000000 --- a/frontend/static/themes/purpurite.css +++ /dev/null @@ -1,24 +0,0 @@ -:root { - --bg-color: #1f2533; - --main-color: #9999ff; - --caret-color: #9999ff; - --sub-color: #ccddff; - --sub-alt-color: #3d4b66; - --text-color: #9999ff; - --error-color: #ff6666; - --error-extra-color: #ff6666; - --colorful-error-color: #ff6666; - --colorful-error-extra-color: #ff6666; -} - -nav .textButton { - color: #99ffdd; -} - -footer .leftright div { - color: #99ffdd; -} - -footer .leftright i { - color: #99ffdd; -}