/* ========================================
   LEGACY FILE - MIGRATION NEEDED

   This file contains legacy color utility classes.
   These should be migrated to use design tokens from _design-tokens.css

   Migration mapping:
   - .neutral-600 (#525252) -> Consider using var(--color-text-secondary)
   - .neutral-300 (#D4D4D4) -> Consider using var(--color-border-secondary)
   - .neutral-500 (#737373) -> Consider using var(--color-text-muted)
   - .neutral-800 (#2C2C2C) -> Consider using var(--color-text-primary)
   - .pastelRed (#FC5E5E)   -> Consider using var(--color-error)

   See _MIGRATION-GUIDE.md for details.
   ======================================== */

.neutral-600 {
    color: var(--color-text-secondary);
}

.neutral-300 {
    color: var(--color-border-secondary);
}

.neutral-500 {
    color: var(--color-text-muted);
}

.neutral-800 {
    color: var(--color-text-primary);
}

.pastelRed {
    color: var(--color-error);
}

