A Material UI theme implementing Pearson UX specs
npm install pearson-mui-themeThis is Material UI Theme created to match Pearson UX specs as closely as possible.
html
href="https://fonts.googleapis.com/css?family=Open+Sans"
rel="stylesheet">
`Install the package in your project. In your app root folder do:
NPM Command
`shell
> npm install --save pearson-mui-theme
`Yarn Command
`shell
> yarn add pearson-mui-theme
`Once package is installed, it can be imported and used as your theme.
`javascript
import pearsonTheme from 'pearson-mui-theme';
import { MuiThemeProvider, createMuiTheme} from '@material-ui/core/styles';`Wrap the theme provider on the root of your app:
`html
``