@import url("theme.css");

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;

}

.text-success {
    color: var(--secondary-color) !important;
}


/* Background Color */


.bg-primary {
    color: var(--primary-color) !important;
}

.bg-secondary {
    color: var(--secondary-color) !important;

}

.bg-success {
    color: var(--secondary-color) !important;
}

.btn-outline-success:hover{
    background-color: var(--primary-color);
}
.btn-outline-success{
    color: var(--primary-color);
    border-color: var(--primary-color);
}