<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --main-color: #34495e;
    --darker-main-color: #1a2938;
    --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>