Files
policy-ui/app/types/app-theme.ts
Jordan Weingarten 67482f6629 WIP jordan
2026-04-16 11:11:44 -05:00

15 lines
577 B
TypeScript

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.' }
]