/* ══════════════════════════════════════════════════════════════════════════
   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: #132433ff;
    --tone-2: #095067ff;
    --tone-3: #007d9cff;
    --tone-4: #79d4fdff;
    --tone-5: #fddd00ff;

    --tone-1-rgb: 19, 36, 51;
    --tone-2-rgb: 9, 80, 103;
    --tone-3-rgb: 0, 125, 156;
    --tone-4-rgb: 121, 212, 253;
    --tone-5-rgb: 253, 221, 0;

    --tone-text: #f8fafcff;
    --tone-text-rgb: 248, 250, 252;

    --code-bg: #0b151eff;
    --code-bg-rgb: 11, 21, 30;
}