:root {
    --border-radius: 10px;
    --text-color: #000;
    --text-background: #00000000;
    --text-selected-color: #fff;
    --text-selected-background: #000;

    --body-color: #000;
    --body-background: #fff;
}
@media (prefers-color-scheme: dark) {
    :root {
        --text-color: #fff;
        --text-background: #00000000;
        --text-selected-color: #000;
        --text-selected-background: #fff;

        --body-color: #fff;
        --body-background: #000;
    }
}