mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-03 20:40:48 +08:00
added modern dolch
This commit is contained in:
parent
02fb8096c1
commit
9fad8da6b6
2 changed files with 32 additions and 0 deletions
|
@ -123,5 +123,10 @@
|
|||
"name": "miami_nights",
|
||||
"bgColor": "#18181a",
|
||||
"textColor": "#e4609b"
|
||||
},
|
||||
{
|
||||
"name": "modern_dolch",
|
||||
"bgColor": "#585b5f",
|
||||
"textColor": "#65d2cd"
|
||||
}
|
||||
]
|
||||
|
|
27
public/themes/modern_dolch.css
Normal file
27
public/themes/modern_dolch.css
Normal file
|
@ -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);
|
||||
}
|
Loading…
Reference in a new issue