/* theme/lovecooking.css — the named theme from the user's settings record
   (defaultSettings.theme === 'lovecooking'). Swappable per user without touching app.css. */
:root { --loc-accent: #7a4a2b; --loc-paper: #fbf8f3; }

/* BrowserSheet takes its palette from whatever project holds it. Naming its variables here
   is the whole of what this application owes the sheet: everything structural is the
   module's own, and nothing about it is restated in our stylesheets. */
:root {
  --sheet-line: var(--loc-line);
  --sheet-line-strong: var(--loc-line-strong);
  --sheet-surface: var(--loc-surface);
  --sheet-surface-sunk: var(--loc-surface-sunk);
  --sheet-ink: var(--loc-ink);
  --sheet-accent: var(--loc-accent);
  --sheet-accent-soft: var(--loc-accent-soft);
  --sheet-copy: var(--loc-ok);
  --sheet-danger: var(--loc-danger);
  --sheet-radius: var(--loc-radius-sm);
  --sheet-muted: var(--loc-muted);
  --sheet-page: var(--loc-paper);
  --sheet-cell-face: var(--loc-body-face);
}
