update colors again

This commit is contained in:
Benjamin Wiegand
2026-04-22 14:17:40 -07:00
parent a5c6e5428d
commit e06724f213
2 changed files with 14 additions and 48 deletions
+2 -2
View File
@@ -235,10 +235,10 @@ const t = (key) => translations[`js_${key}`] || translations[key] || key;
container.style.height = "2rem";
container.style.borderRadius = "1rem";
container.style.cursor = "pointer";
container.style.background = "#b16286";
container.style.background = "#6100ff";
container.style.color = "white";
container.style.fontWeight = "bold";
container.style.outline = "4px solid #b16286";
container.style.outline = "4px solid #6100ff";
container.style.outlineOffset = "2px";
container.style.width = "min(20rem, 90%)";
container.style.margin = "1rem auto 2rem";
+12 -46
View File
@@ -1,52 +1,18 @@
:root {
--body-sans-font: Geist, sans-serif;
--body-preformatted-font: Iosevka Curly Iaso, monospace;
--body-title-font: Podkova, serif;
--body-sans-font: sans-serif;
--body-preformatted-font: monospace;
--body-title-font: serif;
--background: #1d2021;
--text: #f9f5d7;
--text-selection: #d3869b;
--preformatted-background: #3c3836;
--link-foreground: #b16286;
--link-background: #282828;
--blockquote-border-left: 1px solid #bdae93;
--background: #000000;
--text: #ffffff;
--text-selection: #6100ff;
--preformatted-background: #333333;
--link-foreground: #8b8dff;
--link-background: #000000;
--blockquote-border-left: 1px solid #bbbbbb;
--progress-bar-outline: #b16286 solid 4px;
--progress-bar-fill: #b16286;
}
@media (prefers-color-scheme: light) {
:root {
--background: #f9f5d7;
--text: #1d2021;
--text-selection: #d3869b;
--preformatted-background: #ebdbb2;
--link-foreground: #b16286;
--link-background: #fbf1c7;
--blockquote-border-left: 1px solid #655c54;
}
}
@font-face {
font-family: "Geist";
font-style: normal;
font-weight: 100 900;
font-display: swap;
src: url("./static/geist.woff2") format("woff2");
}
@font-face {
font-family: "Podkova";
font-style: normal;
font-weight: 400 800;
font-display: swap;
src: url("./static/podkova.woff2") format("woff2");
}
@font-face {
font-family: "Iosevka Curly";
font-style: monospace;
font-display: swap;
src: url("./static/iosevka-curly.woff2") format("woff2");
--progress-bar-outline: #6100ff solid 4px;
--progress-bar-fill: #6100ff;
}
main {