diff --git a/public/themes/list.json b/public/themes/list.json index 7639a3580..66f932609 100644 --- a/public/themes/list.json +++ b/public/themes/list.json @@ -123,5 +123,10 @@ "name": "miami_nights", "bgColor": "#18181a", "textColor": "#e4609b" + }, + { + "name": "modern_dolch", + "bgColor": "#585b5f", + "textColor": "#65d2cd" } ] diff --git a/public/themes/modern_dolch.css b/public/themes/modern_dolch.css new file mode 100644 index 000000000..4bc935783 --- /dev/null +++ b/public/themes/modern_dolch.css @@ -0,0 +1,27 @@ +:root { + --bg-color: #2d2e30; + --main-color: #e3e6eb; + --caret-color: #65d2cd; + --sub-color: #7e8389; + --error-color: #d36a7b; + --error-extra-color: #994154; +} + +#top .logo .bottom{ + color: var(--caret-color); +} + +#top.focus .logo .bottom{ + transition: .25s; + color: var(--sub-color); +} + +.word letter.incorrect{ + color: var(--error-color); +} +.word.error{ + border-bottom: 2px solid var(--error-color); +} +.word letter.incorrect.extra { + color: var(--error-extra-color); +} \ No newline at end of file