The part of 'React Theming' project
npm install react-theme-providertheme data to your React Components via context. You don't need to have Material-UI in dependencies if you just want to pass your created theme to your non Material-UI components.
html elements - it will be based on your theme settings.
html elements. They will have same appearance with the marerial ones if wrapped in this provider.
const greyTheme = {
themeName: 'Grey Theme',
themeFile: 'greyTheme.json',
palette: {
primary1Color: '#00bcd4',
alternateTextColor: '#4a4a4a',
canvasColor: '#616161',
textColor: '#bdbdbd',
secondaryTextColor: 'rgba(255, 255, 255, 0.54)',
disabledColor: '#757575',
accent1Color: '#607d8b',
},
};
`
You can develop your own themes with this tool (or see Live Demo)
$3
a string containing CSS rules. Typically it's a template string with passed theme props:
`
.themed div {
color: ${palette.textColor};
background-color: ${palette.canvasColor};
}
.themed a {
color: ${palette.primary1Color};
}
`
Demo
Explore this live demo project:

API
`
themes={[greyTheme, altTheme]}
themeInd={1}
override
setCSS={CSSrule}
>
`
themes - array with themes created in storybook-addon-material-ui. not required
themeInd - to set the current theme from themes. not required
override - if you use it inside of MuiThemeProvider (Material-UI) it will override theme. not required
setCSS - your custom CSS style function. You can set your own rules for CSS styling based on the theme setting. not required
>if you use it without any props inside the MuiThemeProvider, it will provide CSS style for your html elements based on the current theme
>if you use it without any props outside the MuiThemeProvider, it will provide CSS style for your html elements based on the default theme and pass this theme to your components via context same way as MuiThemeProvider.
by default you will have follow CSS settings:
`CSS
.${className} div {
color: ${palette.textColor};
background-color: ${palette.canvasColor};
border-width: 1px;
border-color: ${palette.borderColor};
}
.${className} a {
color: ${palette.primary1Color};
}
.${className} span {
color: ${palette.accent1Color};
}
.${className} ::selection {
background: ${palette.primary2Color};
}
`
Usage
- install
`
npm i react-theme-provider --save
`
- import
`
import ThemeProvider from 'react-theme-provider';
`
- wrap
`
``