/* OneTape design tokens - shared by landing (public/index.html)
   and cabinet SPA (web/src/style.css). Single source of truth:
   edit here, both surfaces pick it up. */

:root {
  --bg: #f8fafc;
  --bg-alt: #eef1f5;
  --ink: #10131a;
  --muted: #5b6472;
  --line: #d7dbe2;
  --accent: #93691f;
  --ink-hover: #2a2f3a;
  --mono: 'PT Mono', 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
  --brand: 'Martian Mono', var(--mono);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #12161b;
    --bg-alt: #1b222a;
    --ink: #ede7da;
    --muted: #93a0ab;
    --line: #2a323c;
    --accent: #d1a15c;
    --ink-hover: #cfc9bb;
  }
}

:root[data-theme="light"] {
  --bg: #f8fafc;
  --bg-alt: #eef1f5;
  --ink: #10131a;
  --muted: #5b6472;
  --line: #d7dbe2;
  --accent: #93691f;
  --ink-hover: #2a2f3a;
}

:root[data-theme="dark"] {
  --bg: #12161b;
  --bg-alt: #1b222a;
  --ink: #ede7da;
  --muted: #93a0ab;
  --line: #2a323c;
  --accent: #d1a15c;
  --ink-hover: #cfc9bb;
}
