/* ══════════════════════════════════════════════════════════════════════════
   theme-cypress.css — color scheme ONLY. Load this AFTER style.css
   in index.html (a second <link>) to apply this palette instead of the
   default. To make a new color scheme, copy this file, rename it
   (theme-<name>.css), and change only the values below.
   ══════════════════════════════════════════════════════════════════════════ */
:root {
  --tone-1: #0b120cff;
  --tone-2: #142416ff;
  --tone-3: #1f3a23ff;
  --tone-4: #2d5a35ff;
  --tone-5: #c5a059ff;

  --tone-1-rgb: 11, 18, 12;
  --tone-2-rgb: 20, 36, 22;
  --tone-3-rgb: 31, 58, 35;
  --tone-4-rgb: 45, 90, 53;
  --tone-5-rgb: 197, 160, 89;

  --tone-text: #f0f5f1ff;
  --tone-text-rgb: 240, 245, 241;

  --code-bg: #080d09ff;
  --code-bg-rgb: 8, 13, 9;
}