aboutsummaryrefslogblamecommitdiffstats
path: root/webui/src/themes/DefaultLight.ts
blob: 898bd0bc1a6a7ea53c506d042d0522866f077350 (plain) (tree)
1
2
3
4
5
6
7

                                                          




                                          






                        



      
                                 
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;