/* Text colors */
.text-hint { color: var(--color-text-hint); }
.text-muted { color: var(--color-text-muted); }
.text-secondary { color: var(--color-text-secondary); }
.text-brand { color: var(--color-brand); }
.text-error { color: var(--color-error); }
.text-success { color: var(--color-success); }

/* Font sizes */
.text-xs { font-size: var(--text-xs); }
.text-sm { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-md { font-size: var(--text-md); }
.text-lg { font-size: var(--text-lg); }

/* Common combos (real patterns from codebase) */
.label-hint { color: var(--color-text-hint); font-size: var(--text-md); }
.label-sm-hint { color: var(--color-text-hint); font-size: var(--text-sm); }
