From 04b87c9ea0b5058adb0ded701e54d439b1601b21 Mon Sep 17 00:00:00 2001 From: Ehan Date: Wed, 4 Jan 2023 08:31:33 -0500 Subject: [PATCH] Add purpurite theme (#3847) EhaAhamed * Add purpurite.css * Added purpurite theme to list --- frontend/static/themes/_list.json | 5 +++++ frontend/static/themes/purpurite.css | 24 ++++++++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 frontend/static/themes/purpurite.css diff --git a/frontend/static/themes/_list.json b/frontend/static/themes/_list.json index a693e1930..79cb32801 100644 --- a/frontend/static/themes/_list.json +++ b/frontend/static/themes/_list.json @@ -798,5 +798,10 @@ "name": "earthsong", "bgColor": "#292521", "mainColor": "#509452" + }, + { + "name": "purpurite", + "bgColor": "#1F2533", + "mainColor": "#9999FF" } ] diff --git a/frontend/static/themes/purpurite.css b/frontend/static/themes/purpurite.css new file mode 100644 index 000000000..f3cc76f62 --- /dev/null +++ b/frontend/static/themes/purpurite.css @@ -0,0 +1,24 @@ +: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; +} + +#menu .textButton { + color: #99ffdd; +} + +#bottom .leftright div { + color: #99ffdd; +} + +#bottom .leftright i { + color: #99ffdd; +}