/* Single source of truth for theme colors — used by both the app (theme.css)
   and the static login page. Change the palette here only. */
:root {
  --paper: #f3efe4;
  --paper-2: #fbf8f0;
  --ink: #211c15;
  --ink-soft: #7a7060;
  --ink-faint: #a89d86;
  --grid: #e9e3d3;
  --grid-bold: #ddd4be;
  --rule: #cabfa6;
  --line: #9b9078;

  --orange: #e8993f;
  --orange-deep: #b46a14;
  --magenta: #b0418f;
  --magenta-deep: #8a2f6f;

  --accent: var(--orange);
  --accent-deep: var(--orange-deep);

  --mono: ui-monospace, "SF Mono", "JetBrains Mono", "Roboto Mono", Menlo, Consolas, monospace;
  --sans: var(--mono);

  --radius: 3px;
  --shadow: 3px 3px 0 rgba(33, 28, 21, 0.13);
  --maxw: 720px;   /* modals, login card, bottom sheet */
  --appw: 1120px;  /* main app shell (home/detail) — wider on big screens */
}
