Added dark theme support

This commit is contained in:
n07070 2021-01-03 22:32:46 +01:00
parent 9feff97a17
commit 19d4b525c0

View File

@ -4,3 +4,47 @@
* and place all your CSS inside it. * and place all your CSS inside it.
* You should not modify this file. * You should not modify this file.
*/ */
@media (prefers-color-scheme: dark) {
body {
color: #eee;
background: #121212;
}
body a {
color: #809fff;
}
.content {
background: #121212;
}
.card-container {
background: #121212;
}
.menu-container {
color: white;
background: #121212;
}
.nav-header {
background: #121212;
color: white;
}
.nav-text{
background: #121212;
color: white;
}
.blog-card {
background: #121212;
color: white;
}
.blog-card h2{
background: #121212;
color: white;
}
}