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