export type Theme = 'light' | 'dark'; export type FontSize = 'small' | 'medium' | 'large'; export type DreamMode = 'nrem' | 'early-rem' | 'late-rem' | 'lucid'; export interface Project { name: string; path: string; }