commit e588f9d0bf1075d57cc3210767e066bfc76b3c41 from: Omar Polo date: Wed Aug 24 13:14:08 2022 UTC add a dark theme hope that some folks will like it commit - b2508be53375e9870370b9612f0bbc639798fdb5 commit + e588f9d0bf1075d57cc3210767e066bfc76b3c41 blob - c10755ae4dc4233c28ae3d4c211bf4451157684f blob + 08feda81eeeffe5cb75954085b5ef040ad19f188 --- style.css +++ style.css @@ -112,7 +112,7 @@ hr { footer { margin-top: 70px; - border-top: 1px solid black; + border-top: 1px solid #333; } footer > p { @@ -128,3 +128,24 @@ footer li { display: inline-block; padding: 8px; } + + +/* dark theme */ +@media (prefers-color-scheme: dark) { + body { + color: #ffffea; + background-color: #383838; + } + + a { + color: #8e8eff; + } + + header.mail-header { + background-color: #390039; + } + + footer { + border-color: #ffffea; + } +}