1.0.2 • Published 5 years ago
@epas1117/kushki-mui-theme v1.0.2
@kushki/mui-theme
A custom theme for use with Material-UI.
Installation
npm install @kushki/mui-themeThis 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.
// theme.ts
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&& runnpm publish
Authors
- Kushki Dev Team
- Esteban Aristizábal - Initial work