:root {
    --default-color: #1E5EFF;
    --error-color: #F0142F;
    --warning-color: #F99600;
    --success-color: #06A561;
    --grey-color: #A1A7C4;
}

.default-text {
    color: var(--default-color) !important;
}

.error-text {
    color: var(--error-color) !important;
}

.warning-text {
    color: var(--warning-color) !important;
}

.success-text {
    color: var(--success-color) !important;
}

.grey-text {
    color: var(--grey-color) !important;
}