Platzi Master C8 Theme
npm install @master-c8/themeColors, Theme to Default of master-c8 project
#### Example:
``jsx
import React from 'react';
import { ThemeProvider } from '@master-c8/theme';
import Routes from 'Routes';
import 'Styles/style.scss';
const App = () => (
);
export default App
`
#### Example:
`jsx
import { THEME } from '@master-c8/theme';
console.log(THEME.palette.warning.main) // '#FBA618'
`
#### Example:
`jsx
import { COLORS } from '@master-c8/theme';
console.log(COLORS.background1) // '#E5E5E5'
``