From cf56ad8e95047c1f0cf5c2db2ec27c1f382cb7f1 Mon Sep 17 00:00:00 2001 From: Mohit Paddhariya Date: Sat, 31 Aug 2024 15:09:58 +0530 Subject: [PATCH] Add neon theme with vibrant colors A vibrant neon theme with a dark background and bright, bold colors. --- frontend/static/themes/_list.json | 7 +++++++ frontend/static/themes/neon.css | 12 ++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 frontend/static/themes/neon.css diff --git a/frontend/static/themes/_list.json b/frontend/static/themes/_list.json index 47076936b34f..0da77c696c7e 100644 --- a/frontend/static/themes/_list.json +++ b/frontend/static/themes/_list.json @@ -1244,5 +1244,12 @@ "mainColor": "#e0794e", "subColor": "#688e8f", "textColor": "#023e3b" + }, + { + "name": "neon", + "bgColor": "#2b213a", + "mainColor": "#ff71ce", + "subColor": "#01cdfe", + "textColor": "#fffb96" } ] \ No newline at end of file diff --git a/frontend/static/themes/neon.css b/frontend/static/themes/neon.css new file mode 100644 index 000000000000..c5ade4004087 --- /dev/null +++ b/frontend/static/themes/neon.css @@ -0,0 +1,12 @@ +:root { + --bg-color: #2b213a; + --main-color: #ff71ce; + --caret-color: #b967ff; + --sub-color: #01cdfe; + --sub-alt-color: #664e8c; + --text-color: #fffb96; + --error-color: #ff3864; + --error-extra-color: #ff5e5e; + --colorful-error-color: #ff00ff; + --colorful-error-extra-color: #00ffff; +}