/* ══════════════════════════════════════════════════════════════════════════
   theme-burgundy.css — color scheme ONLY. Load this AFTER style.css
   in index.html (a second <link>) to apply this palette. To make a new
   color scheme, copy this file, rename it (theme-<name>.css), and change
   only the values below — nothing else in the site needs to know about it.
   ══════════════════════════════════════════════════════════════════════════ */
:root {
  --tone-1: #1a080aff;
  --tone-2: #23060eff;
  --tone-3: #3d0c14ff;
  --tone-4: #6e1420ff;
  --tone-5: #d97b3fff;

  --tone-1-rgb: 26, 8, 10;
  --tone-2-rgb: 35, 6, 14;
  --tone-3-rgb: 61, 12, 20;
  --tone-4-rgb: 110, 20, 32;
  --tone-5-rgb: 217, 123, 63;

  --tone-text: #f6e9dcff;
  --tone-text-rgb: 246, 233, 220;

  --code-bg: #140d0fff;
  --code-bg-rgb: 20, 13, 15;
}