From 2b059bbefa545295f9a2953ae96f90babb466a75 Mon Sep 17 00:00:00 2001 From: decaf Date: Sun, 8 Nov 2020 22:42:31 -0600 Subject: [PATCH] Added onedark theme --- static/themes/list.json | 5 +++++ static/themes/onedark.css | 11 +++++++++++ 2 files changed, 16 insertions(+) create mode 100644 static/themes/onedark.css diff --git a/static/themes/list.json b/static/themes/list.json index 3fa346d8f..d47c3aa99 100644 --- a/static/themes/list.json +++ b/static/themes/list.json @@ -433,5 +433,10 @@ "name": "iceberg_light", "bgColor": "#e8e9ec", "textColor": "#33374c" + }, + { + "name": "onedark", + "bgColor": "#2f343f", + "textColor": "#98c379" } ] diff --git a/static/themes/onedark.css b/static/themes/onedark.css new file mode 100644 index 000000000..ac94e1f58 --- /dev/null +++ b/static/themes/onedark.css @@ -0,0 +1,11 @@ +:root { + --bg-color: #2f343f; + --caret-color: #61afef; + --main-color: #61afef; + --sub-color: #eceff4; + --text-color: #98c379; + --error-color: #e06c75; + --error-extra-color: #d62436; + --colorful-error-color: #d62436; + --colorful-error-extra-color: #ff0019; +}