From 69a0509a666a6996c2ea545fedd1ea4e7e4403e6 Mon Sep 17 00:00:00 2001 From: Teddi <83455454+teddinotteddy@users.noreply.github.com> Date: Thu, 13 Jan 2022 16:02:04 -0600 Subject: [PATCH] Add Ducky Frozen Llama Theme (#2292) by teddinotteddy * Add Ducky Frozen Llama Theme * Add Frozen Llama Theme to _list.json --- static/themes/_list.json | 5 +++++ static/themes/frozen_llama.css | 11 +++++++++++ 2 files changed, 16 insertions(+) create mode 100644 static/themes/frozen_llama.css diff --git a/static/themes/_list.json b/static/themes/_list.json index 7924c1116..5aeeb9992 100644 --- a/static/themes/_list.json +++ b/static/themes/_list.json @@ -664,4 +664,9 @@ "bgColor" : "#fff2d5", "mainColor":"#332800" } + ,{ + "name": "frozen_llama", + "bgColor" : "#9bf2ea", + "textColor":"#ffffff" + } ] diff --git a/static/themes/frozen_llama.css b/static/themes/frozen_llama.css new file mode 100644 index 000000000..d7fd3d13e --- /dev/null +++ b/static/themes/frozen_llama.css @@ -0,0 +1,11 @@ +:root { + --bg-color: #9bf2ea; + --main-color: #6d44a6; + --caret-color: #ffffff; + --sub-color: #b690fd; + --text-color: #ffffff; + --error-color: #e42629; + --error-extra-color: #e42629; + --colorful-error-color: #e42629; + --colorful-error-extra-color: #e42629; +}