spb/zyquo-cloud-web Public MIT
Zyquo Cloud Web — every cloud model, one beautiful chat, entirely in your browser.
TypeScript 81.9%
CSS 8.9%
JavaScript 7.5%
Shell 1.1%
HTML 0.6%
1/*2 * accents.ts3 * Zyquo Cloud Web4 *5 * Author: Simon-Pierre Boucher6 * Mail: contact@spboucher.ai7 *8 * Accent palette metadata (swatch colors for the Appearance picker). The9 * authoritative CSS values live in tokens.css; these are the same light-mode10 * accents exposed as data for the swatch UI.11 */1213import type { AccentChoice } from '../types'1415export const ACCENT_SWATCHES: readonly { id: AccentChoice; swatch: string }[] = [16 { id: 'indigo', swatch: '#4E6AF0' },17 { id: 'graphite', swatch: '#5B6270' },18 { id: 'teal', swatch: '#1D9A8F' },19 { id: 'amber', swatch: '#C77D1D' },20 { id: 'rose', swatch: '#C94F7C' },21]22