/* * accents.ts * Zyquo Cloud Web * * Author: Simon-Pierre Boucher * Mail: contact@spboucher.ai * * Accent palette metadata (swatch colors for the Appearance picker). The * authoritative CSS values live in tokens.css; these are the same light-mode * accents exposed as data for the swatch UI. */ import type { AccentChoice } from '../types' export const ACCENT_SWATCHES: readonly { id: AccentChoice; swatch: string }[] = [ { id: 'indigo', swatch: '#4E6AF0' }, { id: 'graphite', swatch: '#5B6270' }, { id: 'teal', swatch: '#1D9A8F' }, { id: 'amber', swatch: '#C77D1D' }, { id: 'rose', swatch: '#C94F7C' }, ]