/* themes.css — palette for samie's journal
 *
 * Note on themes: the original brief called for three switchable themes
 * (Burnt Dawn / Slate & Sage / Midnight Ink). The design hand-off
 * superseded that — across the design chats the user moved deliberately
 * away from the multi-theme atmospheric version ("it might be too much")
 * and landed on a single, quiet "Field Notebook" skin. That decision wins,
 * so this app ships the one Field Notebook palette below.
 *
 * The variables stay centralised here so a future theme could be added as
 * a `body.theme-*` override block without touching journal.css.
 */

:root {
  /* paper + desk */
  --paper:   #f3efe2;            /* warm parchment page */
  --paper2:  #ece7d6;
  --desk:    #d9d2c1;            /* the desk the page sits on */
  --surface: #fbf6dd;            /* sticky-note / card surface */

  /* notebook grid + rules */
  --grid:    rgba(90,104,78,.16);
  --gridb:   rgba(90,104,78,.30);
  --redrule: rgba(168,80,70,.38);
  --dot:     #566143;

  /* ink */
  --ink:   #39402f;             /* forest-green ink */
  --ink2:  #5c6347;
  --muted: #8a8d70;

  /* botanical accents */
  --sage:  #6c7a52;
  --sage2: #566143;
  --plum:  #b9789a;
  --rust:  #a9603a;
  --tape:  rgba(182,178,150,.52);

  /* type */
  --font-display: 'Caveat', cursive;       /* title + handwritten labels */
  --font-hand:    'Architects Daughter', cursive; /* margin scribbles / checks */
  --font-mono:    'IBM Plex Mono', monospace;      /* UI labels + metadata */
}
