mirror of
https://github.com/dongdigua/dongdigua.github.io
synced 2024-11-23 23:53:10 +08:00
22 lines
439 B
CSS
22 lines
439 B
CSS
/* minimal darkmode
|
|
this sucks. but I don't want to edit main.css shit */
|
|
@media (prefers-color-scheme: dark) {
|
|
* {
|
|
background-color: #1e1e2e !important;
|
|
color: #cdd6f4 !important;
|
|
}
|
|
h1, h2, h3, h4 {
|
|
color: #b4befe !important;
|
|
}
|
|
img {
|
|
filter: grayscale(50%);
|
|
}
|
|
a {
|
|
color: #89b4fa !important;
|
|
}
|
|
pre, pre span, code {
|
|
color: #a6e3a1 !important;
|
|
}
|
|
}
|
|
|