Skip to content

Commit d0a809b

Browse files
committed
Make site background solid
1 parent 29b6948 commit d0a809b

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

src/styles.css

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414

1515
:root[data-theme='dark'] {
1616
color-scheme: dark;
17-
--bg: #10110f;
18-
--bg-top: #1a1c18;
17+
--bg: #0b0b0b;
18+
--bg-top: #0b0b0b;
1919
--surface: #151613;
2020
--text: #f5f3ee;
2121
--muted: #b7b2a8;
@@ -29,13 +29,17 @@
2929
box-sizing: border-box;
3030
}
3131

32+
html {
33+
background: var(--bg);
34+
}
35+
3236
body {
3337
margin: 0;
3438
min-height: 100vh;
3539
min-height: 100svh;
3640
font-family: 'Space Mono', monospace;
3741
color: var(--text);
38-
background: radial-gradient(circle at top, var(--bg-top) 0%, var(--bg) 55%);
42+
background: var(--bg);
3943
overflow-x: hidden;
4044
}
4145

0 commit comments

Comments
 (0)