export default function createMUITheme( wrapperRbCtx: any ) {
  return createMuiTheme({
    palette: {
      primary: blue,
      secondary: pink,
      type: 'light',
    },
  })
}
Beispiel #2
0
import createMuiTheme from '@material-ui/core/styles/createMuiTheme'

export default createMuiTheme({
    palette: {
        type: 'dark',
        primary: {
            light: '#6fbf73',
            main: '#357a38',
            dark: '#357a38'
        },
        secondary: {
            light: '#33eaff',
            main: '#00e5ff',
            dark: '#00a0b2'
        }
    },
    typography: {
        useNextVariants: true
    }
})
Beispiel #3
0
          color: colors.coolGrey500
        },
        "&$disabled": {
          color: colors.coolGrey100
        }
      }
    },
    MuiDrawer: {
      paperAnchorLeft: {
        borderRight: "none"
      },
      paperAnchorDockedLeft: {
        borderRight: "none"
      }
    },
    MuiOutlinedInput: {
      inputMarginDense: {
        paddingTop: 8,
        paddingBottom: 8
      }
    },
    MuiTableCell: {
      root: {
        borderBottom: `1px solid ${colors.black10}`
      }
    }
  }
};

export default createMuiTheme(rawMuiTheme);