/* ==========================================
   NX TEXT COLORS
========================================== */

:root{
    /* Brand */
    --nx-color-primary:#C8A24A;
    --nx-color-primary-hover:#B88A2D;

    --nx-color-secondary:#123A6F;
    --nx-color-secondary-hover:#0F315D;

    /* Surface */
    --nx-color-dark:#1C1C1C;
    --nx-color-surface:#262626;
    --nx-color-bg:#F8F8F6;

    /* Typography */
    --nx-text-primary:#1C1C1C;
    --nx-text-secondary:#6B7280;
    --nx-text-muted:#9CA3AF;
    --nx-text-inverse:#FFFFFF;
}
.nx-text-primary{
    color:var(--nx-text-primary) !important;
}

.nx-text-secondary{
    color:var(--nx-text-secondary) !important;
}

.nx-text-muted{
    color:var(--nx-text-muted) !important;
}

.nx-text-white{
    color:var(--nx-text-inverse) !important;
}

.nx-text-white-90{
    color:rgba(255,255,255,.90) !important;
}

.nx-text-white-80{
    color:rgba(255,255,255,.80) !important;
}

.nx-text-white-70{
    color:rgba(255,255,255,.70) !important;
}

.nx-text-white-60{
    color:rgba(255,255,255,.60) !important;
}

.nx-text-white-50{
    color:rgba(255,255,255,.50) !important;
}

.nx-text-brand{
    color:var(--nx-color-primary) !important;
}

.nx-text-accent{
    color:var(--nx-color-primary) !important;
}