/** * Represents the currently active theme mode. * Can only be 'dark' or 'light'. */ export type CurrentTheme = 'dark' | 'light';