This repository has been archived on 2021-06-21. You can view files and clone it, but cannot push or open issues or pull requests.
public_html/dark.css

17 lines
195 B
CSS
Raw Permalink Normal View History

@media (prefers-color-scheme: dark) {
body {
2021-05-07 02:33:28 +00:00
color:#ffffff;
background-color:#000;
}
2021-05-07 02:33:28 +00:00
a {
2021-05-07 02:33:28 +00:00
color:#fffc00;
background-color:#000;
}
2021-05-07 02:33:28 +00:00
a:hover {
color:#ff5f5c;
background-color:#000;
}
}