aboutsummaryrefslogblamecommitdiffstats
path: root/webui/src/themes/DefaultDark.ts
blob: 65dd6329b44ed0b334d21c8bce712efc3b715844 (plain) (tree)
1
2
3
4
5
6
7
8

                                                          
                                         
            
                 
              

                      







                       
                                
      


                           

      

   
                                
import { createMuiTheme } from '@material-ui/core/styles';

const defaultDarkTheme = createMuiTheme({
  palette: {
    type: 'dark',
    primary: {
      dark: '#263238',
      main: '#2a393e',
      light: '#525252',
    },
    error: {
      main: '#f44336',
      dark: '#ff4949',
    },
    info: {
      main: '#2a393e',
      contrastText: '#ffffffb3',
    },
    success: {
      main: '#2ea44fd9',
      contrastText: '#fff',
    },
  },
});

export default defaultDarkTheme;