@kushki/mui-theme
A custom theme for use with Material-UI.
Installation
npm install @kushki/mui-theme
This package should be used with @material-ui/core
version 4 or newer, so make sure you have that installed.
Extending this theme
If you want to add or change properties of this theme, you can use the themeOptions
export instead of theme
, and compose your own theme.
import {themeOptions} from '@kushki/mui-theme';
export const theme = createMuiTheme({
...themeOptions,
palette: {
...themeOptions.palette,
},
typography: {
...themeOptions.typography,
},
overrides: {
...themeOptions.overrides,
},
});
Quickstart
- run
npm install
- make and commit your changes in your new branch (use semver principle)
- make a PR to master to have the changes merged
- in master run
tsc
&& run npm publish
Authors
- Kushki Dev Team
- Esteban Aristizábal - Initial work