diff --git a/static/themes/_list.json b/static/themes/_list.json index 3366d5622..b9d76cb52 100644 --- a/static/themes/_list.json +++ b/static/themes/_list.json @@ -4,6 +4,11 @@ "bgColor": "#111", "textColor": "#eee" }, + { + "name": "muted", + "bgColor": "#525252", + "textColor": "#B1E4E3" + }, { "name": "dark_magic_girl", "bgColor": "#091f2c", diff --git a/static/themes/muted.css b/static/themes/muted.css new file mode 100644 index 000000000..14f916fb6 --- /dev/null +++ b/static/themes/muted.css @@ -0,0 +1,8 @@ +:root { + --bg-color: #525252; + --main-color: #C5B4E3; + --caret-color: #B1E4E3; + --sub-color: #939eae; + --text-color: #B1E4E3; + --error-color: #EDC1CD; + }