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