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