aboutsummaryrefslogblamecommitdiffstats
path: root/webui/src/themes/DefaultLight.ts
blob: 735600b53cc52d82e1773b318d913dc840d89ac4 (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',
    },
    success: {
      main: '#2ea44fd9',
      contrastText: '#fff',
    },
    text: {
      secondary: '#555',
    },
  },
});

export default defaultLightTheme;