/* 2-semantic/colors.css */
:root {
  /* Couleurs de marque */
  --color-primary: var(--blue-500);
  --color-primary-hover: var(--blue-600);
  --color-primary-light: var(--blue-400);
  
  /* États */
  --color-success: var(--green-500);
  --color-error: var(--red-500);
  --color-warning: var(--amber-500);
  
  /* Interface */
  --color-text: var(--gray-900);
  --color-text-muted: var(--gray-500);
  --color-background: var(--gray-50);
  --color-border: var(--gray-200);
}