/* Critical first-paint theme colors to prevent splash/flicker between pages. */
html, body {
    background: #1e1e1e;
    color: #cccccc;
}

html[data-theme="light"], html[data-theme="light"] body {
    background: #ffffff;
    color: #212529;
}

/* Help browser paint controls in matching scheme immediately. */
html { color-scheme: dark; }
html[data-theme="light"] { color-scheme: light; }
