5 lines
133 B
TypeScript
5 lines
133 B
TypeScript
export type Theme = "light" | "dark";
|
|
|
|
export const DEFAULT_THEME: Theme = "light";
|
|
|
|
export const THEME_COOKIE_NAME = "drift-theme";
|