<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --main-color: rgb(213, 34, 20);
    --darker-main-color: rgb(135, 16, 7);
    --titlefont: 'Lato', sans-serif;
}
@media(prefers-color-scheme:dark) {
    :root {
        --main-color: rgb(233 57 43);
        --darker-main-color: rgb(213, 34, 20);
    }
}
</pre></body></html>