: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-nirmala {
    color: #fff;
    background-color: var(--theme-primary);
    border-color: var(--theme-primary);
}

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

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

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