// Single locked-in brand palette: Cream + sage green.
// Was previously a multi-palette toggle; now fixed since the site uses a
// language switch instead of a color-scheme switch.

const PALETTES = {
  cream: {
    id: 'cream',
    name: 'Cream',
    sub: 'Warm daylight',
    swatch: ['#f3ead7', '#dccfb8', '#8a9682'],

    bg: '#f3ead7',          // warm cream
    bgAlt: '#ebe0c4',       // slightly deeper greige
    surface: '#fbf5e6',     // ivory card
    surfaceAlt: '#e7d9bb',
    border: 'rgba(74, 60, 42, 0.14)',
    borderStrong: 'rgba(74, 60, 42, 0.22)',
    accent: '#8a9682',      // sage
    accentDark: '#5f6c57',
    accentSoft: '#d4dac8',
    text: '#2c2520',
    textMuted: '#6b5c4a',
    textSubtle: '#9a8a73',
    onAccent: '#fbf5e6',
    calmBg: '#ead9b8',
    calmAccent: '#a8b09c',
    messyBg: '#d8c69e',
    messyAccent: '#8d8167',
    placeholderInk: '#4a3c2a',
  },
};

Object.assign(window, { PALETTES });
