<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(52, 73, 94);
    --darker-main-color: rgb(26, 41, 56);
    --titlefont: 'Lato', sans-serif;
}
@media(prefers-color-scheme:dark) {
    :root {
        --main-color: rgb(100 116 133);
        --darker-main-color: rgb(94 109 124);
    }
}
</pre></body></html>