etch/assets/css/dark.css

54 lines
794 B
CSS
Raw Normal View History

2020-05-28 01:22:05 -04:00
{{ if not (eq .Site.Params.dark "on") -}}
@media (prefers-color-scheme: dark) {
{{ end -}}
2020-08-30 19:45:01 -04:00
html {
scrollbar-color: #6c6c6c #2e2e2e;
}
2020-05-28 01:22:05 -04:00
body {
color: #ebebeb;
background: #121212;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
2020-05-28 01:22:05 -04:00
}
header#banner a {
color: #e0e0e0;
text-decoration: none;
}
header#banner nav ul li a {
color: #cccccc;
}
main#content a {
color: #00b1ed;
}
main#content p {
color: #f5f5f5;
}
2020-06-30 02:56:45 -04:00
main#content hr {
background: #5c5c5c;
}
2020-06-07 23:40:45 -04:00
main#content #toc h4 {
color: #d4d4d4;
}
2020-05-28 01:22:05 -04:00
main#content ul#posts small {
color: #a7a7a7;
}
main#content ul#posts li a:hover {
color: #21c7ff;
}
2021-04-10 21:54:26 -04:00
main#content header#post-header div {
2020-05-28 01:22:05 -04:00
color: #a7a7a7;
}
{{- if not (eq .Site.Params.dark "on") -}}
}
{{- end -}}