From 51f9a8d666a57cefdfee60bfa5a18a085932caf8 Mon Sep 17 00:00:00 2001 From: Ryan Harrington Date: Thu, 4 Jun 2020 09:29:35 -0600 Subject: [PATCH] feat: monokai theme --- public/themes/list.json | 5 +++++ public/themes/monokai.css | 9 +++++++++ 2 files changed, 14 insertions(+) create mode 100644 public/themes/monokai.css diff --git a/public/themes/list.json b/public/themes/list.json index 72ca9790c..1b3a347d5 100644 --- a/public/themes/list.json +++ b/public/themes/list.json @@ -168,5 +168,10 @@ "name": "gruvbox_light", "bgColor": "#fbf1c7", "textColor": "#458588" + }, + { + "name": "monokai", + "bgColor": "#272822", + "textColor": "E6DB74" } ] diff --git a/public/themes/monokai.css b/public/themes/monokai.css new file mode 100644 index 000000000..d79ec9f1c --- /dev/null +++ b/public/themes/monokai.css @@ -0,0 +1,9 @@ +:root { + --bg-color: #272822; + --main-color: #A6E22E; + --caret-color: #66D9EF; + --sub-color: #75715E; + --text-color: #E6DB74; + --error-color: #F92672; + --error-extra-color: #FD971F; +} \ No newline at end of file