Add simple dark theme

This commit is contained in:
Charlotte Van Petegem 2022-11-04 20:51:07 +01:00
parent 9a5b3e282a
commit e242f8473e
No known key found for this signature in database
GPG key ID: 019E764B7184435A

View file

@ -56,3 +56,25 @@ pre {
}
}
}
@media (prefers-color-scheme: dark) {
header {
border-bottom: #ccc 1px solid;
}
footer {
border-top: #ccc 1px solid;
}
body {
background: black;
color: #ccc;
}
a {
color: lightblue;
&:visited {
color: lightpink;
}
}
}