﻿.e-text-primary {
    color: var(--gray-900);
}

.e-text-secondary {
    color: var(--gray-600);
}

.e-text-tertiary {
    color: var(--gray-500);
}

.e-text-heading {
    color: var(--gray-800);
}

.e-text-link {
    color: var(--brand-600);

    &:hover {
        color: var(--brand-800);
        text-decoration: underline;
    }

}

.e-text-success {
    color: var(--success-700);
}

.e-text-warning {
    color: var(--warning-700);
}

.e-text-error {
    color: var(--error-700);
}

.e-text-white {
    color: var(--white);
}

.e-text-black {
    color: var(--black);
}

a,
a .e-text-primary {
    color: var(--brand-600);
    text-decoration: none;
}