User's theme preferences combining system and local settings.
export interface ThemePreferences { system: ThemeMode; local: ThemeMode | null;} Copy
export interface ThemePreferences { system: ThemeMode; local: ThemeMode | null;}
Current system theme mode.
Locally stored preference, or null if not set.
User's theme preferences combining system and local settings.
Source