WIP jordan
This commit is contained in:
14
app/types/app-theme.ts
Normal file
14
app/types/app-theme.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
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.' }
|
||||
]
|
||||
Reference in New Issue
Block a user