mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2026-01-05 06:54:36 +08:00
Added DMG theme (#2392) by Usman-Abubakr
This commit is contained in:
parent
4935a6594d
commit
aefb60a2dc
2 changed files with 39 additions and 1 deletions
|
|
@ -708,5 +708,10 @@
|
|||
"name": "fleuriste",
|
||||
"bgColor": "#c6b294",
|
||||
"mainColor": "#405a52"
|
||||
}
|
||||
}
|
||||
,{
|
||||
"name": "dmg",
|
||||
"bgColor": "#dadbdc",
|
||||
"mainColor": "#3846b1"
|
||||
}
|
||||
]
|
||||
|
|
|
|||
33
static/themes/dmg.css
Normal file
33
static/themes/dmg.css
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
:root {
|
||||
--bg-color: #dadbdc;
|
||||
--main-color: #ae185e;
|
||||
--caret-color: #384693;
|
||||
--sub-color: #3846b1;
|
||||
--text-color: #414141;
|
||||
--error-color: #ae185e;
|
||||
--error-extra-color: #93335c;
|
||||
--colorful-error-color: #80a053;
|
||||
--colorful-error-extra-color: #306230;
|
||||
}
|
||||
|
||||
#menu {
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
#top.focus #menu .icon-button {
|
||||
background: var(--bg-color);
|
||||
size: 1rem;
|
||||
}
|
||||
#top.focus #menu .icon-button:nth-child(1) {
|
||||
background: #e34c6c;
|
||||
}
|
||||
#top.focus #menu:before,
|
||||
#top.focus #menu:after {
|
||||
background: var(--sub-color);
|
||||
}
|
||||
|
||||
#menu .icon-button {
|
||||
border-radius: 10rem !important;
|
||||
color: var(--bg-color);
|
||||
background: var(--main-color);
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue