Add dark mode support for clarity theme

This commit is contained in:
Richie Bendall 2021-04-30 05:18:53 +12:00 committed by GitHub
parent d28a1c137e
commit 402e047179
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -40,3 +40,17 @@ a {
#gravatar {
border-radius: 50%;
}
@media only screen and (prefers-color-scheme: dark) {
body {
background-color: #121212;
}
h1 {
color: #bbc0c3;
}
p {
color: rgba(255, 255, 255, 0.87);
}
}