From cfc0785e9ad87832ab9848d6625be892abef9e15 Mon Sep 17 00:00:00 2001 From: Abdullah Omar Date: Mon, 13 Dec 2021 19:36:45 +0400 Subject: [PATCH] Dev theme (#2175) by Abod1960 * added dev.css this theme is based on "Dev theme by KDr3w" color pallet: https://www.deviantart.com/kdr3w/art/Dev-825722799 * added dev theme this theme is based on "Dev theme by KDr3w" color pallet: https://www.deviantart.com/kdr3w/art/Dev-825722799 --- static/themes/_list.json | 5 +++++ static/themes/dev.css | 12 ++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 static/themes/dev.css diff --git a/static/themes/_list.json b/static/themes/_list.json index d71a73d10..cacbbeeeb 100644 --- a/static/themes/_list.json +++ b/static/themes/_list.json @@ -633,5 +633,10 @@ "name": "modern_ink", "bgColor" : "#ffffff", "textColor":"#ff360d" + }, + { + "name": "dev", + "bgColor" : "#1b2028", + "textColor":"#23a9d5" } ] diff --git a/static/themes/dev.css b/static/themes/dev.css new file mode 100644 index 000000000..46b9147c0 --- /dev/null +++ b/static/themes/dev.css @@ -0,0 +1,12 @@ +/*this theme is based on "Dev theme by KDr3w" color pallet: https://www.deviantart.com/kdr3w/art/Dev-825722799 */ +:root { + --bg-color: #1b2028; + --main-color: #23a9d5; + --caret-color: #4b5975; + --sub-color: #4b5975; + --text-color: #ccccb5; + --error-color: #b81b2c; + --error-extra-color: #84131f; + --colorful-error-color: #b81b2c; + --colorful-error-extra-color: #84131f; +}