fix: harden dark background — html + body + .post all set to var(--c-bg)

This commit is contained in:
2026-06-14 01:33:08 +01:00
parent f42c76308c
commit b0a69cc658
16 changed files with 62 additions and 0 deletions
+10
View File
@@ -39,6 +39,8 @@
*, *::before, *::after { box-sizing: border-box; }
html { background: var(--c-bg); }
body {
margin: 0;
padding: 0;
@@ -50,6 +52,14 @@
-webkit-font-smoothing: antialiased;
}
.blog-header {
background: var(--c-bg);
}
.blog-list {
background: var(--c-bg);
}
/* ── Section label kicker ── */
.section-label {
display: inline-block;
Before
After