Modern Design System
npm install modern``bash`
npm install --save modern
Here is a quick example to get you started:
`javascript
import { Card } from 'modern'
export default () => (
)
`
For extensive documentation on usage for each component check out the modern storybook.
If you'd like to override any of the design system predefined defaults such as colors or the font family, simply import the design system configuration object and override the properties you'd like to customize.
`html
import { config } from 'modern'
config.fonts.family = 'Gotham'
config.colors.blue.blue900 = '#3287f1'
``