ThemeMode: "dark" | "light" | "system"

Represents the theme mode for the application.

Possible values:

  • 'dark': Dark mode
  • 'light': Light mode
  • 'system': Follows the system theme
export type ThemeMode = "dark" | "light" | "system";