CoastalCommitsPastes/client/app/components/theme/theme.tsx
Max Leiter 12d9eafcd9 lint
2022-11-17 22:36:53 -08:00

5 lines
130 B
TypeScript

export type Theme = "light" | "dark"
export const DEFAULT_THEME: Theme = "light"
export const THEME_COOKIE_NAME = "drift-theme"