Types relating to MindDrop's theming.
The current appearance of the theme. Either light
or dark
.
type ThemeAppearance = 'light' | 'dark';
The setting used to decide which apperance to apply to the theme. When set to system
, the appearance will be resolved based on the OS's appearance setting.
type ThemeAppearanceSetting = 'light' | 'dark' | 'system';