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

const defaultLightTheme = createMuiTheme({
  palette: {
    type: 'light',
    primary: {
      main: '#263238',
    },
  },
});

export default defaultLightTheme;