Skip to content
This repository was archived by the owner on Apr 12, 2023. It is now read-only.

Commit eac9a1d

Browse files
committed
Dark mode quick fix
1 parent 7586358 commit eac9a1d

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/styles/globals.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,14 @@ a {
1818
box-sizing: border-box;
1919
}
2020

21+
@media (prefers-color-scheme: dark) {
22+
23+
* {
24+
background: var(--a-gray-900) !important;
25+
color: var(--a-gray-200);
26+
}
27+
}
28+
2129
main {
2230
max-width: 90rem;
2331
padding: 0 2rem;

0 commit comments

Comments
 (0)