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

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

export default theme;