blob: bc788a986634e35ca9682a05808f6d292da39867 (
plain) (
tree)
|
|
import { createMuiTheme } from '@material-ui/core/styles';
const defaultLightTheme = createMuiTheme({
palette: {
type: 'light',
primary: {
main: '#263238',
light: '#f5f5f5',
},
info: {
main: '#e2f1ff',
contrastText: '#555',
},
success: {
main: '#2ea44fd9',
contrastText: '#fff',
},
text: {
secondary: '#555',
},
},
});
export default defaultLightTheme;
|