/** * @file /src/constants/theme.ts * @name Theme * @description Constants related to the theme */ export const DARK_THEME = "Dark"; export const LIGHT_THEME = "Light"; export type AppTheme = typeof DARK_THEME | typeof LIGHT_THEME;