DefaultLight.ts

 1import { createMuiTheme } from '@material-ui/core/styles';
 2
 3const defaultLightTheme = createMuiTheme({
 4  palette: {
 5    type: 'light',
 6    primary: {
 7      main: '#263238',
 8      light: '#f5f5f5',
 9    },
10    info: {
11      main: '#e2f1ff',
12      contrastText: '#555',
13    },
14    success: {
15      main: '#2ea44fd9',
16      contrastText: '#fff',
17    },
18    text: {
19      secondary: '#555',
20    },
21  },
22});
23
24export default defaultLightTheme;