@media (prefers-color-scheme: dark) {
    body {
        background-color: #323232;
        color: rgba(255,255,255,0.85);
    }

    a, a:link, a:visited {
        color: #419CFF;
        text-decoration: none;
    }
    
    a:hover {
        color: #419CFF;
        text-decoration: underline;
    }
    
    .content .header {
        border-bottom-color: rgba(255,255,255,0.55);
    }
    
    .content .header .siteTitle a, .content .header .siteTitle a:visited {
        color: rgba(255,255,255,1);
    }
    
    .content .header .siteTitle a:hover {
        color: rgba(255,255,255,1);
        text-decoration: underline;
    }
    
    .post .postHeader .postTitle, .post .postHeader .postTitle:visited {
        color: rgba(255,255,255,1);
    }
    
    .homepage .day .daybreak {
        color: rgba(255,255,255,0.55);
        background-color: rgba(255,255,255,0.55);
    }
}