From b80c13a4a372193dc431d08522d0bec0236239b5 Mon Sep 17 00:00:00 2001 From: Vincent LE GOFF Date: Wed, 24 Mar 2021 22:06:21 +0100 Subject: [PATCH] feat: add Grand Prix Theme --- static/themes/_list.json | 5 +++++ static/themes/grand_prix.css | 11 +++++++++++ 2 files changed, 16 insertions(+) create mode 100644 static/themes/grand_prix.css diff --git a/static/themes/_list.json b/static/themes/_list.json index 711c57947..573024a40 100644 --- a/static/themes/_list.json +++ b/static/themes/_list.json @@ -508,5 +508,10 @@ "name": "copper", "bgColor": "#442f29", "textColor": "#e7e0de" + }, + { + "name": "grand_prix", + "bgColor": "#36475c", + "textColor": "#c0d036" } ] diff --git a/static/themes/grand_prix.css b/static/themes/grand_prix.css new file mode 100644 index 000000000..ab8718eff --- /dev/null +++ b/static/themes/grand_prix.css @@ -0,0 +1,11 @@ +:root { + --bg-color: #36475c; + --main-color: #c0d036; + --caret-color: #c0d036; + --sub-color: #5c6c80; + --text-color: #c1c7d7; + --error-color: #fc5727; + --error-extra-color: #fc5727; + --colorful-error-color: #fc5727; + --colorful-error-extra-color: #fc5727; +}