DefaultLight.ts

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