Represents the user's theme preferences.
export interface ThemePreferences { system: ThemeMode; local: ThemeMode | null;} Copy
export interface ThemePreferences { system: ThemeMode; local: ThemeMode | null;}
The current system theme mode.
The locally stored theme mode, or null if not set.
Represents the user's theme preferences.
Source