/*
  ────────────────────────────────────────────────────────────────────────────
  THEME — single source of truth for the site's accent (theme) colour.

  To re-theme the whole site, change the ONE active --color-accent value below
  and refresh the browser. No build step required (this file is served as-is).

  The value is RGB channels, space-separated (e.g. `185 28 28`), so Tailwind can
  apply opacity modifiers like `text-accent/50`. Convert any hex with an online
  "hex to rgb" tool, or pick one of the presets below.
  ────────────────────────────────────────────────────────────────────────────
*/
:root {
  --color-accent: 185 28 28;          /* Deep red   (#b91c1c) — ACTIVE */

  /* ── Presets — comment out the line above and uncomment one ──────────────── */
  /* --color-accent: 220 38 38;  */   /* Bright red (#dc2626) */
  /* --color-accent: 159 18 57;  */   /* Crimson    (#9f1239) */
  /* --color-accent: 37 99 235;  */   /* Blue       (#2563eb) */
  /* --color-accent: 13 148 136; */   /* Teal       (#0d9488) */
  /* --color-accent: 217 119 6;  */   /* Amber      (#d97706) */
  /* --color-accent: 124 58 237; */   /* Violet     (#7c3aed) */
  /* --color-accent: 22 101 52;  */   /* Green      (#166534) */
}
