aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/themes/DefaultLight.ts
blob: 9c57ebe57ce904a8df3f346848c219784ff7d595 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import { createMuiTheme } from '@material-ui/core/styles';

const defaultLightTheme = createMuiTheme({
  palette: {
    type: 'light',
    primary: {
      dark: '#263238',
      main: '#5a6b73',
      light: '#f5f5f5',
      contrastText: '#fff',
    },
    info: {
      main: '#e2f1ff',
      contrastText: '#555',
    },
    success: {
      main: '#2ea44fd9',
      contrastText: '#fff',
    },
    text: {
      secondary: '#555',
    },
  },
});

export default defaultLightTheme;