:root {
    /* Default (light mode) theme variables */
    --primary-color: rgb(100, 130, 30);
    --secondary-color: rgb(60, 87, 103);
    --accent-color: rgb(228, 159, 43);
    --text-color: rgb(38, 35, 30);
    --background-color: rgb(255, 233, 174);
}

@media (prefers-color-scheme: dark) {
    :root {
        --text-color: rgb(255, 233, 174);
        --background-color: rgb(38, 35, 30);
    }
}