From e8df6741bf5ccf74e2026bb0d96d2e98034a0bd1 Mon Sep 17 00:00:00 2001 From: MD Jannatin Naim Date: Mon, 11 Apr 2022 19:37:59 +0600 Subject: [PATCH] Add Theme - Mexican (#2797) JannatinNaim * add theme / mexican * update theme config / mexican * Update Mexican Theme --- frontend/static/themes/_list.json | 5 +++++ frontend/static/themes/mexican.css | 12 ++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 frontend/static/themes/mexican.css diff --git a/frontend/static/themes/_list.json b/frontend/static/themes/_list.json index aef290dc5..9c509f83f 100644 --- a/frontend/static/themes/_list.json +++ b/frontend/static/themes/_list.json @@ -739,4 +739,9 @@ "bgColor": "#003950", "mainColor": "#ffcefb" } + ,{ + "name": "mexican", + "bgColor": "#cec176", + "mainColor": "#ffffff" + } ] diff --git a/frontend/static/themes/mexican.css b/frontend/static/themes/mexican.css new file mode 100644 index 000000000..737c30e91 --- /dev/null +++ b/frontend/static/themes/mexican.css @@ -0,0 +1,12 @@ +:root { + --bg-color: #F8AD34; + --main-color: #B12189; + --caret-color: #eee; + --sub-color: #333; + --sub-alt-color: #B12189; + --text-color: #eee; + --error-color: #da3333; + --error-extra-color: #791717; + --colorful-error-color: #da3333; + --colorful-error-extra-color: #791717; +}