:root {
    --theme-primary: #FAC41A;
    --theme-light: #FCE18C;
    --theme-superlight: #FDEBB3;
    --theme-dark: #D0A316;
    --theme-superdark: #8C6B05;
    --theme-color: #171717;
}

[data-theme="nirmala"] {
    --theme-primary: #8b2205;
    --theme-light: #c42b00;
    --theme-superlight: #fccabc;
    --theme-dark:#711900;
    --theme-superdark:#611804;
    --theme-color: #ddd;
}

.btn-theme {
    color: #fff;
    background-color: var(--theme-primary);
    border-color: var(--theme-primary);
}

.btn-theme:hover {
    color: #fff;
    background-color: var(--theme-dark);
    border-color: var(--theme-dark);
}
.btn-theme:disabled {
    color: #fff;
    background-color: #d69d25;
    border-color: #ca9423;
}

.btn-theme-light {
    color: var(--theme-superdark);
    background-color: var(--theme-superlight);
    border-color: var(--theme-superlight);
}

.btn-theme-light:hover {
    color: #fff;
    background-color: var(--theme-superdark);
    border-color: var(--theme-superdark);
}
.btn-theme-light.disabled,
.btn-theme-light:disabled {
    color: #4b4b4b;
    background-color: #d9d9d9;
    border-color: #c2c2c2;
}
