mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-11-12 07:01:31 +08:00
added ez-mode theme updated into dark theme (#1580) by kraiztmatte
* added IFK ez-mode theme * update ez-mode color on list.json
This commit is contained in:
parent
b482120f0e
commit
2e851b51a3
2 changed files with 44 additions and 0 deletions
|
|
@ -558,5 +558,10 @@
|
|||
"name": "fledgling",
|
||||
"bgColor": "#3b363f",
|
||||
"textColor": "#fc6e83"
|
||||
},
|
||||
{
|
||||
"name": "ez_mode",
|
||||
"bgColor": "#0171cd",
|
||||
"textColor": "#f5f5f5"
|
||||
}
|
||||
]
|
||||
|
|
|
|||
39
static/themes/ez_mode.css
Normal file
39
static/themes/ez_mode.css
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
:root {
|
||||
--bg-color: #0068c6;
|
||||
--main-color: #fa62d5;
|
||||
--caret-color: #4ddb47;
|
||||
--sub-color: #f5f5f5;
|
||||
--text-color: #fa62d5;
|
||||
--error-color: #4ddb47;
|
||||
--error-extra-color: #42ba3b;
|
||||
--colorful-error-color: #4ddb47;
|
||||
--colorful-error-extra-color: #42ba3b;
|
||||
}
|
||||
|
||||
.pageSettings .section h1 {
|
||||
color: var(--text-color);
|
||||
}
|
||||
|
||||
.pageSettings .section > .text {
|
||||
color: var(--sub-color);
|
||||
}
|
||||
|
||||
.pageAbout .section .title {
|
||||
color: var(--text-color);
|
||||
}
|
||||
|
||||
.pageAbout .section p {
|
||||
color: var(--sub-color);
|
||||
}
|
||||
|
||||
#leaderboardsWrapper #leaderboards .title {
|
||||
color: var(--sub-color);
|
||||
}
|
||||
|
||||
#leaderboardsWrapper #leaderboards .tables table thead {
|
||||
color: var(--sub-color);
|
||||
}
|
||||
|
||||
#leaderboardsWrapper #leaderboards .tables table tbody {
|
||||
color: var(--sub-color);
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue