CoastalCommitsPastes/client/app/components/theme/theme.tsx

6 lines
130 B
TypeScript
Raw Normal View History

2022-11-18 01:36:53 -05:00
export type Theme = "light" | "dark"
2022-11-18 01:36:53 -05:00
export const DEFAULT_THEME: Theme = "light"
2022-11-18 01:36:53 -05:00
export const THEME_COOKIE_NAME = "drift-theme"