mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-03-10 13:44:27 +08:00
feat: neon theme addition
This commit is contained in:
parent
50ae363f23
commit
077fbbd4d2
2 changed files with 19 additions and 1 deletions
|
@ -21,5 +21,6 @@
|
|||
"mizu",
|
||||
"metaverse",
|
||||
"shadow",
|
||||
"mint"
|
||||
"mint",
|
||||
"neon"
|
||||
]
|
||||
|
|
17
public/themes/neon.css
Normal file
17
public/themes/neon.css
Normal file
|
@ -0,0 +1,17 @@
|
|||
:root {
|
||||
--bg-color: #f35588;
|
||||
--main-color: #05dfd7;
|
||||
--caret-color: #a3f7bf;
|
||||
--sub-color: #fff591;
|
||||
--error-color: #9d72ff;
|
||||
}
|
||||
|
||||
.word letter.incorrect,
|
||||
.word.error,
|
||||
.word letter.incorrect.extra {
|
||||
color: var(--error-color);
|
||||
}
|
||||
|
||||
.word.error {
|
||||
border-bottom: solid 2px var(--error-color);
|
||||
}
|
Loading…
Reference in a new issue