From 76eb104f3726d49b78fffc4447e9ba5e85019f90 Mon Sep 17 00:00:00 2001 From: SANDHIYA G <118624179+sandyg6@users.noreply.github.com> Date: Mon, 10 Jun 2024 19:48:35 +0530 Subject: [PATCH] feat(theme): add lilac mist (sandyg6) (#5415) * feat(theme):Add lilac_mist * feat(theme): Add updated lilac_mist.css * Update _list.json * feat(theme): Add theme lilac_mist * Add lilac_mist.css * Add Updated _list.json * Add updated lilac_mist.css * increase color separation darker text pinker main lighter sub --------- Co-authored-by: Miodec --- frontend/static/themes/_list.json | 7 +++++++ frontend/static/themes/lilac_mist.css | 12 ++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 frontend/static/themes/lilac_mist.css diff --git a/frontend/static/themes/_list.json b/frontend/static/themes/_list.json index 424c6c574..80574dabc 100644 --- a/frontend/static/themes/_list.json +++ b/frontend/static/themes/_list.json @@ -1230,5 +1230,12 @@ "mainColor": " #ffdd6d", "subColor": "#779097", "textColor": "#E5E5E5" + }, + { + "name": "lilac_mist", + "bgColor": "#fffbfe", + "mainColor": "#b94189", + "subColor": "#e094c2", + "textColor": "#5c2954" } ] diff --git a/frontend/static/themes/lilac_mist.css b/frontend/static/themes/lilac_mist.css new file mode 100644 index 000000000..5141c8ba3 --- /dev/null +++ b/frontend/static/themes/lilac_mist.css @@ -0,0 +1,12 @@ +:root { + --bg-color: #fffbfe; + --main-color: #b94189; + --caret-color: #e099d6d9; + --sub-color: #e094c2; + --sub-alt-color: #ecdceed9; + --text-color: #5c2954; + --error-color: #ff6f69; + --error-extra-color: #ff6f69; + --colorful-error-color: #bc7fc0; + --colorful-error-extra-color: #bc41b1; +}