1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
import React from 'react'; import { createMuiTheme } from '@material-ui/core/styles' const theme = createMuiTheme({ palette: { primary: { light: '#3a3535', main: '#232020', }, secondary: { main: '#f4f4f4', dark: '#ff7315', }, }, }); export default theme;