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 },
13 success: {
14 main: '#2ea44fd9',
15 contrastText: '#fff',
16 },
17 text: {
18 secondary: '#555',
19 },
20 },
21});
22
23export default defaultLightTheme;