/**
 * The Constellation - Interactive Portfolio
 * Stylesheet: Theme
 * Purpose: CSS custom properties (color palette)
 * Sacred Heart red and white theme
 */

:root {
  --void: #0a0a0f;
  --primary: #dc2626;        /* Sacred Heart red - main accent */
  --secondary: #ef4444;      /* Bright red - secondary accent */
  --tertiary: #991b1b;       /* Deep crimson - depth */
  --highlight: #ffffff;      /* Pure white - highlights */
  --muted: #9ca3af;          /* Muted grey - subtle elements */

  /* Legacy support - map old names to new palette */
  --plasma: #ffffff;
  --ember: #dc2626;
  --corona: #ffffff;
  --nebula: #ef4444;
  --nova: #9ca3af;
}
