export type AppThemeId = 'light' | 'purple' | 'dark' | 'dark-purple' export type AppThemeMeta = { id: AppThemeId label: string description: string } export const APP_THEME_OPTIONS: AppThemeMeta[] = [ { id: 'light', label: 'Stone', description: 'Petroleum teal on warm stone — default.' }, { id: 'purple', label: 'Aubergine', description: 'Muted plum accent on warm stone.' }, { id: 'dark', label: 'Carbon', description: 'Warm dark with teal accent — low fatigue.' }, { id: 'dark-purple', label: 'Dusk', description: 'Deep plum with soft violet accent.' } ]