Website/app/frontend/constants/theme.ts
Snoweuph e776683a18
All checks were successful
Quality Check / QS Backend (push) Successful in 20s
Quality Check / QS Mixed (push) Successful in 35s
Quality Check / QS Frontend (push) Successful in 41s
#3: Setup Tailwind and Flowbite
2024-07-14 16:26:52 +02:00

8 lines
136 B
TypeScript

const THEME_LOCAL_STORAGE_ID = 'theme';
enum Theme {
LIGHT = 'light',
DARK = 'dark'
}
export {THEME_LOCAL_STORAGE_ID, Theme};