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

const defaultLightTheme = createMuiTheme({
  palette: {
    type: 'light',
    primary: {
      main: '#263238',
      light: '#f5f5f5',
    },
    info: {
      main: '#e2f1ff',
    },
    text: {
      secondary: '#555',
    },
  },
});

export default defaultLightTheme;