From c27a4663d0117c9a29dcbb30fcf3a6cf090d59b8 Mon Sep 17 00:00:00 2001 From: Jasmine Ying Date: Thu, 20 May 2021 00:48:51 -0700 Subject: [PATCH] Add Fledgling theme --- static/themes/_list.json | 5 +++++ static/themes/fledgling.css | 11 +++++++++++ 2 files changed, 16 insertions(+) create mode 100644 static/themes/fledgling.css diff --git a/static/themes/_list.json b/static/themes/_list.json index ca1b3c69c..188287ada 100644 --- a/static/themes/_list.json +++ b/static/themes/_list.json @@ -553,5 +553,10 @@ "name": "blueberry_dark", "bgColor": "#212b42", "textColor": "#df4576" + }, + { + "name": "fledgling", + "bgColor": "#3b363f", + "textColor": "#fc6e83" } ] diff --git a/static/themes/fledgling.css b/static/themes/fledgling.css new file mode 100644 index 000000000..e80cef76b --- /dev/null +++ b/static/themes/fledgling.css @@ -0,0 +1,11 @@ +:root { + --bg-color: #3b363f; + --main-color: #fc6e83; + --caret-color: #474747; + --sub-color: #ead8d6; + --text-color: #fc6e83; + --error-color: #f52443; + --error-extra-color: #bd001c; + --colorful-error-color: #ff0a2f; + --colorful-error-extra-color: #9eb5cboh; +}