@media (prefers-color-scheme: dark) {
    :root {
        color-scheme: light;
        --bg: #fff;
        --accent-bg: #f5f7ff;
        --text: #212121;
        --text-light: #585858;
        --accent: #FFC344;
        --accent-hover: #d9a12d;
        --accent-text: var(--bg);
        --code: #d81b60;
        --preformatted: #444;
        --marked: #ffdd33;
        --disabled: #efefef;
    }
}

* {
    font-family: var(--font-mono), serif;
}

a {
    text-decoration: underline;
}

