Added DMG theme (#2392) by Usman-Abubakr

This commit is contained in:
M Usman Abubakr 2022-02-01 18:09:56 +00:00 committed by GitHub
parent 4935a6594d
commit aefb60a2dc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 39 additions and 1 deletions

View file

@ -708,5 +708,10 @@
"name": "fleuriste",
"bgColor": "#c6b294",
"mainColor": "#405a52"
}
}
,{
"name": "dmg",
"bgColor": "#dadbdc",
"mainColor": "#3846b1"
}
]

33
static/themes/dmg.css Normal file
View 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);
}