added hamunii theme

This commit is contained in:
Malcolm Diller 2022-11-17 18:13:08 -08:00
parent 507491fbec
commit bfc21220a7
2 changed files with 29 additions and 1 deletions

View File

@ -156,3 +156,31 @@
--input-text-color: red;
--input-border-color: green;
}
.theme-hamunii {
--background-color1: #242424;
--background-color2: #353535;
--background-color3: #494949;
--background-color4: #000000;
--accent-hue: 213;
--accent-lightness: 76.8%;
--accent-color: #3584e4;
--make-image-border: none;
--button-color: var(--accent-color);
--button-border: none;
--input-border-radius: 6px;
--input-text-color: #ffffff;
--input-background-color: #2a2a2a;
--input-border-size: 0px;
--input-border-color: var(--input-background-color);
}
.theme-hamunii .panel-box {
border: none;
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
border-radius: 10px;
}

View File

@ -14,7 +14,7 @@ function initTheme() {
.flatMap(sheet => Array.from(sheet.cssRules))
.forEach(rule => {
var selector = rule.selectorText; // TODO: also do selector == ":root", re-run un-set props
if (selector && selector.startsWith(".theme-")) {
if (selector && selector.startsWith(".theme-") && !selector.includes(" ")) {
var theme_key = selector.substring(1);
THEMES.push({
key: theme_key,