You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
426 B
TypeScript
10 lines
426 B
TypeScript
import { ThemeStateType } from '../../themes/constants/colors';
|
|
import { StateType } from '../reducer';
|
|
import { checkDarkTheme, checkLightTheme } from '../../util/theme';
|
|
|
|
export const getTheme = (state: StateType): ThemeStateType => state.theme;
|
|
|
|
export const isDarkTheme = (state: StateType): boolean => checkDarkTheme(state.theme);
|
|
|
|
export const isLightTheme = (state: StateType): boolean => checkLightTheme(state.theme);
|