2020-11-03 23:46:20 +00:00
|
|
|
{{ if not (eq .Site.Params.dark "on") -}}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
{{ end -}}
|
|
|
|
|
|
|
|
body {
|
|
|
|
color: #ebebeb;
|
|
|
|
background: #121212;
|
|
|
|
}
|
|
|
|
|
|
|
|
header#banner a {
|
|
|
|
color: #e0e0e0;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
header#banner nav ul li a {
|
|
|
|
color: #cccccc;
|
|
|
|
}
|
|
|
|
|
2020-11-17 21:55:19 +00:00
|
|
|
main#content a, footer a {
|
2020-11-03 23:46:20 +00:00
|
|
|
color: #00b1ed;
|
|
|
|
}
|
|
|
|
|
|
|
|
main#content p {
|
|
|
|
color: #f5f5f5;
|
|
|
|
}
|
|
|
|
|
|
|
|
main#content hr {
|
|
|
|
background: #5c5c5c;
|
|
|
|
}
|
|
|
|
|
|
|
|
main#content #toc h4 {
|
|
|
|
color: #d4d4d4;
|
|
|
|
}
|
|
|
|
|
|
|
|
main#content ul#posts small {
|
|
|
|
color: #a7a7a7;
|
|
|
|
}
|
|
|
|
|
|
|
|
main#content ul#posts li a:hover {
|
|
|
|
color: #21c7ff;
|
|
|
|
}
|
|
|
|
|
|
|
|
main#content header#post-header time {
|
|
|
|
color: #a7a7a7;
|
|
|
|
}
|
|
|
|
{{- if not (eq .Site.Params.dark "on") -}}
|
|
|
|
}
|
|
|
|
{{- end -}}
|