Browse Source

feat: dark mode!

main
Garrit Franke 3 years ago
parent
commit
c22ec2d0de
Signed by: garrit
GPG Key ID: BB54AF7EB0939F3D
  1. 15
      styles/darkmode.css
  2. 1
      styles/index.css

15
styles/darkmode.css

@ -0,0 +1,15 @@
@media (prefers-color-scheme: dark) {
:root {
background-color: #161618;
color: #dbd7db;
}
.button__link {
background-color: #dbd7db;
color: #161618;
}
a {
color: #dbd7db;
}
}

1
styles/index.css

@ -1,5 +1,6 @@
@import url("./typography.css");
@import url("./atoms.css");
@import url("./darkmode.css");
/* Components */

Loading…
Cancel
Save