WIP jordan

This commit is contained in:
Jordan Weingarten
2026-04-16 11:11:44 -05:00
parent ff2d7b18b5
commit 67482f6629
163 changed files with 50627 additions and 728 deletions

14
app/types/app-theme.ts Normal file
View 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.' }
]