rmwc
Version:
A thin React wrapper for Material Design (Web) Components
31 lines (27 loc) • 664 B
Flow
import { toDashCase } from '../Base/utils/to-dash-case';
export const themeOptionsCamel = [
'primary',
'secondary',
'background',
'surface',
'onPrimary',
'onSecondary',
'onSurface',
'textPrimaryOnBackground',
'textSecondaryOnBackground',
'textHintOnBackground',
'textDisabledOnBackground',
'textIconOnBackground',
'textPrimaryOnLight',
'textSecondaryOnLight',
'textHintOnLight',
'textDisabledOnLight',
'textIconOnLight',
'textPrimaryOnDark',
'textSecondaryOnDark',
'textHintOnDark',
'textDisabledOnDark',
'textIconOnDark'
];
export const themeOptions = themeOptionsCamel.map(toDashCase);
export default themeOptions;