/* Shared design tokens — Northmark/Aalpha cream-paper editorial palette
   sampled directly from the app design PDF */
const PP = {
  bg:        '#FAFAF7',  // warm cream paper
  bgSoft:    '#F2F1EC',  // section tint
  bgInk:     '#0E0E0C',  // deepest text / dark surfaces
  text:      '#0E0E0C',  // primary text
  textMute:  '#71716D',  // body / secondary
  textFaint: '#A1A19C',  // micro labels
  border:    'rgba(14,14,12,0.09)',
  borderHi:  'rgba(14,14,12,0.18)',
  surface:   '#FFFFFF',  // clean card
  surface2:  '#F2F1EC',  // soft surface
  accent:    '#E5533C',  // terracotta
  accentHi:  '#E5533C',
  accentDim: 'rgba(229,83,60,0.10)',
  accentSoft:'rgba(229,83,60,0.06)',
  accentGlow:'rgba(229,83,60,0.18)',
  green:     '#1F8A5B',
  blue:      '#2A6FDB',
  amber:     '#B7791F',
  serif:     "var(--pp-serif)",
  sans:      "var(--pp-sans)",
  mono:      "var(--pp-mono)",
};
window.PP = PP;
