Rocket.Chat.ReactNative/app/definitions/ITheme.ts

9 lines
191 B
TypeScript

export type TThemeMode = 'automatic' | 'light' | 'dark';
export type TDarkLevel = 'black' | 'dark';
export interface IThemePreference {
currentTheme: TThemeMode;
darkLevel: TDarkLevel;
}