/* Prevent white flash before JS/styles load by matching system theme early */
html,
body {
    margin: 0;
    padding: 0;
}

@media (prefers-color-scheme: dark) {
    html,
    body {
        background-color: #1A1A1A;
        color: #FFFFFF;
    }

    html[data-theme-id="oldreddit"],
    html[data-theme-id="oldreddit"] body {
        background-color: #1a1a1b;
        color: #d7dadc;
    }
}

@media (prefers-color-scheme: light) {
    html,
    body {
        background-color: #FFFFFF;
        color: #111827;
    }

    html[data-theme-id="oldreddit"],
    html[data-theme-id="oldreddit"] body {
        background-color: #dae0e6;
        color: #1c1c1c;
    }
}
