:root {
    --accent-color: #dbeafe;
}

body {
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
    --tw-gradient-from: var(--accent-color);
    --tw-gradient-to: #e4e4e7;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

@media (prefers-color-scheme: light) {
    html {
        background-color: white;
    }
}

@media (prefers-color-scheme: dark) {
    html {
        background-color: rgb(38 38 38);
    }

    body {
        background-color: rgb(23 23 23);
        background-image: none;
    }
}