/* global React */
/* ─────────────────────────────────────────────────────────
   Salty Voice · Palettes
   Each entry is a full design-token set. Picked from Tweaks,
   piped in as CSS custom properties via <body style="...">.
   ───────────────────────────────────────────────────────── */
const PALETTES = [
  {
    id: 'sage',
    label: 'Sage',
    note: 'Original — calm, clinical',
    tokens: {
      '--ivory': '#FAF8F4', '--ivory-dark': '#F0ECE5', '--line': '#DDD8D0',
      '--charcoal': '#201E1C', '--charcoal-mid': '#3D3836', '--warm-grey': '#9C9690',
      '--sage': '#7A9E9F', '--sage-light': '#A8C5C5', '--sage-dark': '#567B7C',
    },
  },
  {
    id: 'dusty-rose',
    label: 'Dusty Rose',
    note: 'Warm, feminine, approachable',
    tokens: {
      '--ivory': '#FBF7F4', '--ivory-dark': '#F2EAE4', '--line': '#E4D8D0',
      '--charcoal': '#2A1E1C', '--charcoal-mid': '#473632', '--warm-grey': '#A89690',
      '--sage': '#C18B86', '--sage-light': '#E0B9B4', '--sage-dark': '#9E635E',
    },
  },
  {
    id: 'storm-blue',
    label: 'Storm Blue',
    note: 'Cool, considered, professional',
    tokens: {
      '--ivory': '#F7F8FA', '--ivory-dark': '#E9ECF0', '--line': '#D4D9DE',
      '--charcoal': '#1A1E22', '--charcoal-mid': '#34393F', '--warm-grey': '#8E949A',
      '--sage': '#5C7A92', '--sage-light': '#9CB1C3', '--sage-dark': '#3F5970',
    },
  },
  {
    id: 'ochre',
    label: 'Ochre',
    note: 'Earthy, grounded, mature',
    tokens: {
      '--ivory': '#FAF6EE', '--ivory-dark': '#EFE7D5', '--line': '#DDD2BD',
      '--charcoal': '#231D14', '--charcoal-mid': '#403628', '--warm-grey': '#A2967E',
      '--sage': '#B08743', '--sage-light': '#D4B57E', '--sage-dark': '#84621F',
    },
  },
  {
    id: 'plum',
    label: 'Plum',
    note: 'Quiet, distinguished, soft luxury',
    tokens: {
      '--ivory': '#F9F6F7', '--ivory-dark': '#ECE5E9', '--line': '#DAD0D6',
      '--charcoal': '#1F1A1F', '--charcoal-mid': '#3B3138', '--warm-grey': '#9C8E95',
      '--sage': '#876685', '--sage-light': '#B79CB4', '--sage-dark': '#604460',
    },
  },
  {
    id: 'forest',
    label: 'Forest',
    note: 'Deep, settled, restorative',
    tokens: {
      '--ivory': '#F7F7F2', '--ivory-dark': '#E7E8DC', '--line': '#CFD2C0',
      '--charcoal': '#171A15', '--charcoal-mid': '#2F3429', '--warm-grey': '#909286',
      '--sage': '#5B7A55', '--sage-light': '#9AB392', '--sage-dark': '#3D5639',
    },
  },
  {
    id: 'terracotta',
    label: 'Terracotta',
    note: 'Warm, alive, Mediterranean',
    tokens: {
      '--ivory': '#FBF6EF', '--ivory-dark': '#F1E4D3', '--line': '#E2D0B8',
      '--charcoal': '#231811', '--charcoal-mid': '#42302A', '--warm-grey': '#A89488',
      '--sage': '#BB6B4F', '--sage-light': '#DEA088', '--sage-dark': '#8C4730',
    },
  },
  {
    id: 'mono',
    label: 'Monochrome',
    note: 'Editorial, type-led, no accent colour',
    tokens: {
      '--ivory': '#FAFAFA', '--ivory-dark': '#EBEBEB', '--line': '#D4D4D4',
      '--charcoal': '#0F0F0F', '--charcoal-mid': '#363636', '--warm-grey': '#8A8A8A',
      '--sage': '#3A3A3A', '--sage-light': '#7A7A7A', '--sage-dark': '#1A1A1A',
    },
  },
  {
    id: 'sand-indigo',
    label: 'Sand & Indigo',
    note: 'Sandy paper with cool ink accents',
    tokens: {
      '--ivory': '#F6F0E4', '--ivory-dark': '#E8DDC8', '--line': '#D6C9B1',
      '--charcoal': '#16182A', '--charcoal-mid': '#2E3147', '--warm-grey': '#9A917F',
      '--sage': '#3D4A7C', '--sage-light': '#8390B8', '--sage-dark': '#262F58',
    },
  },
  {
    id: 'olive',
    label: 'Olive',
    note: 'Warm green, biophilic, soothing',
    tokens: {
      '--ivory': '#F8F6EE', '--ivory-dark': '#EBE7D2', '--line': '#D6D2B5',
      '--charcoal': '#1E1F15', '--charcoal-mid': '#3A3B27', '--warm-grey': '#988F7A',
      '--sage': '#8A9655', '--sage-light': '#BCC68E', '--sage-dark': '#5F6A2D',
    },
  },
];

window.PALETTES = PALETTES;
