[ABANDONED] React/Redux front end for the Flexor social network.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

6 lines
296 B

import themes from 'src/themes'
import { AppState } from 'src/types'
export const getTheme = (state: AppState) => themes[state.theme.name][state.theme.scheme]
export const getThemeName = (state: AppState) => state.theme.name
export const getColorScheme = (state: AppState) => state.theme.scheme