From 9083818b18ec4dbf2099618a13978f4c596be618 Mon Sep 17 00:00:00 2001 From: dazon <44048306+FakeDazon@users.noreply.github.com> Date: Fri, 3 Jul 2020 18:59:25 -0700 Subject: [PATCH 1/7] Create red_dragon.css --- public/themes/red_dragon.css | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 public/themes/red_dragon.css diff --git a/public/themes/red_dragon.css b/public/themes/red_dragon.css new file mode 100644 index 000000000..519857525 --- /dev/null +++ b/public/themes/red_dragon.css @@ -0,0 +1,11 @@ +:root { + --bg-color: #1a0b0c; + --main-color: #ff3a32; + --caret-color: #ff3a32; + --sub-color: #e2a528; + --text-color: #4a4d4e; + --error-color: #771b1f; + --error-extra-color: #591317; + --colorful-error-color: #771b1f; + --colorful-error-extra-color:#591317; +} From c5babcd73790901f9b931fd6a75662516a39a127 Mon Sep 17 00:00:00 2001 From: dazon <44048306+FakeDazon@users.noreply.github.com> Date: Fri, 3 Jul 2020 18:59:49 -0700 Subject: [PATCH 2/7] Delete red_dragon.css --- public/themes/red_dragon.css | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 public/themes/red_dragon.css diff --git a/public/themes/red_dragon.css b/public/themes/red_dragon.css deleted file mode 100644 index 519857525..000000000 --- a/public/themes/red_dragon.css +++ /dev/null @@ -1,11 +0,0 @@ -:root { - --bg-color: #1a0b0c; - --main-color: #ff3a32; - --caret-color: #ff3a32; - --sub-color: #e2a528; - --text-color: #4a4d4e; - --error-color: #771b1f; - --error-extra-color: #591317; - --colorful-error-color: #771b1f; - --colorful-error-extra-color:#591317; -} From a9f2190d487c357e870b1b3d30f730a474a925ce Mon Sep 17 00:00:00 2001 From: Noah Date: Fri, 3 Jul 2020 19:01:04 -0700 Subject: [PATCH 3/7] Added GMK Red Dragon and GMK Terra color themes Added GMK Red Dragon and GMK Terra color themes to match the sets designed by Rensuya. --- public/themes/list.json | 12 +++++++++++- public/themes/red_dragon.css | 11 +++++++++++ public/themes/terra.css | 11 +++++++++++ 3 files changed, 33 insertions(+), 1 deletion(-) create mode 100644 public/themes/red_dragon.css create mode 100644 public/themes/terra.css diff --git a/public/themes/list.json b/public/themes/list.json index b3f901d63..3e099e556 100644 --- a/public/themes/list.json +++ b/public/themes/list.json @@ -208,5 +208,15 @@ "name": "strawberry", "bgColor": "#e53c58", "textColor": "#fcfcf8" + }, + { + "name": "terra", + "bgColor": "#89c559", + "textColor": "#0c100e" + }, + { + "name": "red dragon", + "bgColor": "#1a0b0c", + "textColor": "#ff3a32" } -] +] \ No newline at end of file diff --git a/public/themes/red_dragon.css b/public/themes/red_dragon.css new file mode 100644 index 000000000..519857525 --- /dev/null +++ b/public/themes/red_dragon.css @@ -0,0 +1,11 @@ +:root { + --bg-color: #1a0b0c; + --main-color: #ff3a32; + --caret-color: #ff3a32; + --sub-color: #e2a528; + --text-color: #4a4d4e; + --error-color: #771b1f; + --error-extra-color: #591317; + --colorful-error-color: #771b1f; + --colorful-error-extra-color:#591317; +} diff --git a/public/themes/terra.css b/public/themes/terra.css new file mode 100644 index 000000000..9c54cf686 --- /dev/null +++ b/public/themes/terra.css @@ -0,0 +1,11 @@ +:root { + --bg-color: #0c100e; + --main-color: #89c559; + --caret-color: #89c559; + --sub-color: #436029; + --text-color: #f0edd1; + --error-color: #d3ca78; + --error-extra-color: #89844d; + --colorful-error-color: #d3ca78; + --colorful-error-extra-color: #89844d; +} From b6d926d5e0d023a50af949424b6a74629f44e689 Mon Sep 17 00:00:00 2001 From: Noah Date: Fri, 3 Jul 2020 19:22:27 -0700 Subject: [PATCH 4/7] Update list.json --- public/themes/list.json | 461 +++++++++++++++++++++------------------- 1 file changed, 240 insertions(+), 221 deletions(-) diff --git a/public/themes/list.json b/public/themes/list.json index 3e099e556..166d15418 100644 --- a/public/themes/list.json +++ b/public/themes/list.json @@ -1,222 +1,241 @@ -[ - { - "name": "light", - "bgColor": "#fff", - "textColor": "#111" - }, - { - "name": "dark", - "bgColor": "#111", - "textColor": "#eee" - }, - { - "name": "8008", - "bgColor": "#3c4756", - "textColor": "#f44c7f" - }, - { - "name": "carbon", - "bgColor": "#575d5e", - "textColor": "#ed6b21" - }, - { - "name": "dots", - "bgColor": "#121520", - "textColor": "#7f88ab" - }, - { - "name": "nautilus", - "bgColor": "#20304a", - "textColor": "#eab622" - }, - { - "name": "serika", - "bgColor": "#e2b714", - "textColor": "#323437" - }, - { - "name": "serika_dark", - "bgColor": "#323437", - "textColor": "#e2b714" - }, - { - "name": "bushido", - "bgColor": "#414755", - "textColor": "#ec4c56" - }, - { - "name": "red_samurai", - "bgColor": "#84202c", - "textColor": "#c79e6e" - }, - { - "name": "rgb", - "bgColor": "linear-gradient(to left, indigo, blue, green, yellow, orange, red);", - "textColor": "#fff" - }, - { - "name": "oblivion", - "bgColor": "#313231", - "textColor": "#a5a096" - }, - { - "name": "laser", - "bgColor": "#221b44", - "textColor": "#b82356" - }, - { - "name": "retro", - "bgColor": "#b3b0a8", - "textColor": "#1d181a" - }, - { - "name": "dracula", - "bgColor": "#282a36", - "textColor": "#bd93f9" - }, - { - "name": "nord", - "bgColor": "#242933", - "textColor": "#617b94" - }, - { - "name": "mr_sleeves", - "bgColor": "linear-gradient(to right, #daa99b, #daa99b 20%, #bdc6ca 20%, #bdc6ca 80%, #8fadc9 80%);", - "textColor": "#000" - }, - { - "name": "olivia", - "bgColor": "#1c1b1d", - "textColor": "#deaf9d" - }, - { - "name": "bliss", - "bgColor": "#262727", - "textColor": "#665957" - }, - { - "name": "mizu", - "bgColor": "#afcbdd", - "textColor": "#1a2633" - }, - { - "name": "metaverse", - "bgColor": "#232323", - "textColor": "#d82934" - }, - { - "name": "shadow", - "bgColor": "#000", - "textColor": "#444" - }, - { - "name": "mint", - "bgColor": "#05385b", - "textColor": "#5cdb95" - }, - { - "name": "miami", - "bgColor": "#f35588", - "textColor": "#05dfd7" - }, - { - "name": "miami_nights", - "bgColor": "#18181a", - "textColor": "#e4609b" - }, - { - "name": "modern_dolch", - "bgColor": "#585b5f", - "textColor": "#65d2cd" - }, - { - "name": "botanical", - "bgColor": "#7b9c98", - "textColor": "#abc6c4" - }, - { - "name": "9009", - "bgColor": "#99947f", - "textColor": "#080909" - }, - { - "name": "bingsu", - "bgColor": "#524149", - "textColor": "#ede8ec" - }, - { - "name": "terminal", - "bgColor": "#1b1c1d", - "textColor": "#79a617" - }, - { - "name": "taro", - "bgColor": "#b3baff", - "textColor": "#130f1a" - }, - { - "name": "striker", - "bgColor": "#124883", - "textColor": "#d6dbd9" - }, - { - "name": "gruvbox_dark", - "bgColor": "#282828", - "textColor": "#ebdbb2" - }, - { - "name": "gruvbox_light", - "bgColor": "#fbf1c7", - "textColor": "#458588" - }, - { - "name": "monokai", - "bgColor": "#272822", - "textColor": "#E6DB74" - }, - { - "name": "camping", - "bgColor": "#faf1e4", - "textColor": "#618c56" - }, - { - "name": "voc", - "bgColor": "#190618", - "textColor": "#e0caac" - }, - { - "name": "vaporwave", - "bgColor": "#a4a7ea", - "textColor": "#e368da" - }, - { - "name": "pulse", - "bgColor": "#181818", - "textColor": "#17b8bd" - }, - { - "name": "matrix", - "bgColor": "#000000", - "textColor": "#15ff00" - }, - { - "name": "olive", - "bgColor": "#e9e5cc", - "textColor": "#92946f" - }, - { - "name": "strawberry", - "bgColor": "#e53c58", - "textColor": "#fcfcf8" - }, - { - "name": "terra", - "bgColor": "#89c559", - "textColor": "#0c100e" - }, - { - "name": "red dragon", - "bgColor": "#1a0b0c", - "textColor": "#ff3a32" - } +[{ + "name": "light", + "bgColor": "#fff", + "textColor": "#111" +}, +{ + "name": "dark", + "bgColor": "#111", + "textColor": "#eee" +}, +{ + "name": "8008", + "bgColor": "#3c4756", + "textColor": "#f44c7f" +}, +{ + "name": "carbon", + "bgColor": "#575d5e", + "textColor": "#ed6b21" +}, +{ + "name": "dots", + "bgColor": "#121520", + "textColor": "#7f88ab" +}, +{ + "name": "nautilus", + "bgColor": "#20304a", + "textColor": "#eab622" +}, +{ + "name": "serika", + "bgColor": "#e2b714", + "textColor": "#323437" +}, +{ + "name": "serika_dark", + "bgColor": "#323437", + "textColor": "#e2b714" +}, +{ + "name": "bushido", + "bgColor": "#414755", + "textColor": "#ec4c56" +}, +{ + "name": "red_samurai", + "bgColor": "#84202c", + "textColor": "#c79e6e" +}, +{ + "name": "rgb", + "bgColor": "linear-gradient(to left, #0043ff, #1bdbdb, #27c214, #e0e019, #e01313)", + "textColor": "#fff" +}, +{ + "name": "oblivion", + "bgColor": "#313231", + "textColor": "#a5a096" +}, +{ + "name": "laser", + "bgColor": "#221b44", + "textColor": "#b82356" +}, +{ + "name": "retro", + "bgColor": "#b3b0a8", + "textColor": "#1d181a" +}, +{ + "name": "dracula", + "bgColor": "#282a36", + "textColor": "#bd93f9" +}, +{ + "name": "nord", + "bgColor": "#242933", + "textColor": "#617b94" +}, +{ + "name": "mr_sleeves", + "bgColor": "linear-gradient(to right, #daa99b, #daa99b 20%, #bdc6ca 20%, #bdc6ca 80%, #8fadc9 80%);", + "textColor": "#000" +}, +{ + "name": "olivia", + "bgColor": "#1c1b1d", + "textColor": "#deaf9d" +}, +{ + "name": "bliss", + "bgColor": "#262727", + "textColor": "#665957" +}, +{ + "name": "mizu", + "bgColor": "#afcbdd", + "textColor": "#1a2633" +}, +{ + "name": "metaverse", + "bgColor": "#232323", + "textColor": "#d82934" +}, +{ + "name": "shadow", + "bgColor": "#000", + "textColor": "#444" +}, +{ + "name": "mint", + "bgColor": "#05385b", + "textColor": "#5cdb95" +}, +{ + "name": "miami", + "bgColor": "#f35588", + "textColor": "#05dfd7" +}, +{ + "name": "miami_nights", + "bgColor": "#18181a", + "textColor": "#e4609b" +}, +{ + "name": "modern_dolch", + "bgColor": "#585b5f", + "textColor": "#65d2cd" +}, +{ + "name": "botanical", + "bgColor": "#7b9c98", + "textColor": "#abc6c4" +}, +{ + "name": "9009", + "bgColor": "#99947f", + "textColor": "#080909" +}, +{ + "name": "bingsu", + "bgColor": "#524149", + "textColor": "#ede8ec" +}, +{ + "name": "terminal", + "bgColor": "#1b1c1d", + "textColor": "#79a617" +}, +{ + "name": "taro", + "bgColor": "#b3baff", + "textColor": "#130f1a" +}, +{ + "name": "striker", + "bgColor": "#124883", + "textColor": "#d6dbd9" +}, +{ + "name": "gruvbox_dark", + "bgColor": "#282828", + "textColor": "#ebdbb2" +}, +{ + "name": "gruvbox_light", + "bgColor": "#fbf1c7", + "textColor": "#458588" +}, +{ + "name": "monokai", + "bgColor": "#272822", + "textColor": "#E6DB74" +}, +{ + "name": "camping", + "bgColor": "#faf1e4", + "textColor": "#618c56" +}, +{ + "name": "voc", + "bgColor": "#190618", + "textColor": "#e0caac" +}, +{ + "name": "vaporwave", + "bgColor": "#a4a7ea", + "textColor": "#e368da" +}, +{ + "name": "pulse", + "bgColor": "#181818", + "textColor": "#17b8bd" +}, +{ + "name": "matrix", + "bgColor": "#000000", + "textColor": "#15ff00" +}, +{ + "name": "olive", + "bgColor": "#e9e5cc", + "textColor": "#92946f" +}, +{ + "name": "strawberry", + "bgColor": "#e53c58", + "textColor": "#fcfcf8" +}, +{ + "name": "night_runner", + "bgColor": "#5c4a9c", + "textColor": "#feff04" +}, +{ + "name": "cyberspace", + "bgColor": "#181c18", + "textColor": "#00ce7c" +}, +{ + "name": "joker", + "bgColor": "#1a0e25", + "textColor": "#99de1e" +}, +{ + "name": "dualshot", + "bgColor": "#2d2e30", + "textColor": "#212222" +}, +{ + "name": "terra", + "bgColor": "#89c559", + "textColor": "#0c100e" +}, +{ + "name": "red dragon", + "bgColor": "#1a0b0c", + "textColor": "#ff3a32" +} ] \ No newline at end of file From b010688ac841b67d5c0b3962d13baf31ee2323e8 Mon Sep 17 00:00:00 2001 From: Jared Kwan Date: Sun, 5 Jul 2020 19:32:36 +0800 Subject: [PATCH 5/7] Added Solarized Dark and Light themes --- public/themes/list.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/public/themes/list.json b/public/themes/list.json index f777a8e76..8725b00b4 100644 --- a/public/themes/list.json +++ b/public/themes/list.json @@ -227,6 +227,16 @@ "name": "dualshot", "bgColor": "#2d2e30", "textColor": "#212222" + }, + { + "name": "solarized_dark", + "bgColor": "#002b36", + "textColor": "#859900" + }, + { + "name": "solarized_light", + "bgColor": "#fdf6e3", + "textColor": "#859900" } ] \ No newline at end of file From 93d1e6ce18b2d28169d10d2335dc06cc3f85c6fe Mon Sep 17 00:00:00 2001 From: Jared Kwan Date: Sun, 5 Jul 2020 19:35:27 +0800 Subject: [PATCH 6/7] Solarized Light and Dark theme --- public/themes/solarized_dark.css | 13 +++++++++++++ public/themes/solarized_light.css | 13 +++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 public/themes/solarized_dark.css create mode 100644 public/themes/solarized_light.css diff --git a/public/themes/solarized_dark.css b/public/themes/solarized_dark.css new file mode 100644 index 000000000..38748b9ba --- /dev/null +++ b/public/themes/solarized_dark.css @@ -0,0 +1,13 @@ +:root { + --bg-color: #002b36; + --main-color: #859900; + /* --main-color: #859900; */ + --caret-color: #dc322f; + --sub-color: #2aa198; + /* --sub-color: #268bd2; */ + --text-color: #268bd2; + --error-color: #d33682; + --error-extra-color: #9b225c; + --colorful-error-color: #d33682 ; + --colorful-error-extra-color: #9b225c; +} \ No newline at end of file diff --git a/public/themes/solarized_light.css b/public/themes/solarized_light.css new file mode 100644 index 000000000..2e3ca8954 --- /dev/null +++ b/public/themes/solarized_light.css @@ -0,0 +1,13 @@ +:root { + --bg-color: #fdf6e3; + --main-color: #859900; + /* --main-color: #859900; */ + --caret-color: #dc322f; + --sub-color: #2aa198; + /* --sub-color: #2aa198; */ + --text-color: #268bd2; + --error-color: #d33682; + --error-extra-color: #9b225c; + --colorful-error-color: #d33682 ; + --colorful-error-extra-color: #9b225c; +} \ No newline at end of file From 86aee148b659a9fbfe88ef4535fbca6c3548c5c1 Mon Sep 17 00:00:00 2001 From: Jared Kwan Date: Sun, 5 Jul 2020 19:48:45 +0800 Subject: [PATCH 7/7] Removed unneeded comments --- public/themes/solarized_dark.css | 2 -- public/themes/solarized_light.css | 2 -- 2 files changed, 4 deletions(-) diff --git a/public/themes/solarized_dark.css b/public/themes/solarized_dark.css index 38748b9ba..9b65a623f 100644 --- a/public/themes/solarized_dark.css +++ b/public/themes/solarized_dark.css @@ -1,10 +1,8 @@ :root { --bg-color: #002b36; --main-color: #859900; - /* --main-color: #859900; */ --caret-color: #dc322f; --sub-color: #2aa198; - /* --sub-color: #268bd2; */ --text-color: #268bd2; --error-color: #d33682; --error-extra-color: #9b225c; diff --git a/public/themes/solarized_light.css b/public/themes/solarized_light.css index 2e3ca8954..d2f5846d9 100644 --- a/public/themes/solarized_light.css +++ b/public/themes/solarized_light.css @@ -1,10 +1,8 @@ :root { --bg-color: #fdf6e3; --main-color: #859900; - /* --main-color: #859900; */ --caret-color: #dc322f; --sub-color: #2aa198; - /* --sub-color: #2aa198; */ --text-color: #268bd2; --error-color: #d33682; --error-extra-color: #9b225c;