
/*

- color.php — dynamically generated CSS custom properties.
- Usage: <link rel="stylesheet" href="color.php?color=7917e7">
- 
- Sets –base-h / –base-s / –base-l so every hsl(var(–base))
- call in main.css and tweaks.css resolves to the chosen brand colour.
  */
  :root {
  /* Primary brand colour (used as –base throughout the codebase) */
  –base-h: 268;
  –base-s: 82%;
  –base-l: 50%;
  
  /* Optional secondary colour */
  –second-h: 268;
  –second-s: 82%;
  –second-l: 50%;
  }