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

6 lines
133 B
TypeScript
Raw Normal View History

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