
    @import url("/css/light.css?03583d6ef5a65a8a14b2cb4a5b58105efdefa046777d5b99ae05eea4") screen and (prefers-color-scheme: light);
    @import url("/css/dark.css?03583d6ef5a65a8a14b2cb4a5b58105efdefa046777d5b99ae05eea4") screen and (prefers-color-scheme: dark);
    @media (prefers-color-scheme: light) {
        :root {
    --theme-primary-rgb: 253,116,108;
    --theme-secondary-rgb: 255,144,104;

    --theme-bg-page-rgb: 255,255,255;
    --theme-bg-primary-rgb: 255,255,255;
    --theme-bg-secondary-rgb: 34,34,34;

        }
    }
    @media (prefers-color-scheme: dark) {
        :root {
    --theme-primary-rgb: 39,44,48;
    --theme-secondary-rgb: 108,117,125;

    --theme-bg-page-rgb: 34,34,34;
    --theme-bg-primary-rgb: 52,58,64;
    --theme-bg-secondary-rgb: 33,37,41;

        }
    }


    :root {
        --theme-gradient: rgba(var(--theme-primary-rgb), var(--theme-opacity));
    }







