Website/app/frontend/constants/theme.ts

9 lines
136 B
TypeScript
Raw Normal View History

2024-07-14 14:26:52 +00:00
const THEME_LOCAL_STORAGE_ID = 'theme';
enum Theme {
LIGHT = 'light',
DARK = 'dark'
}
export {THEME_LOCAL_STORAGE_ID, Theme};