Evolution style thème

This commit is contained in:
Sébastien GLATZ
2019-06-26 16:05:10 +02:00
parent 5405603c70
commit a847305b4a
+9 -1
View File
@@ -5,7 +5,7 @@ import red from '@material-ui/core/colors/red';
const theme = createMuiTheme({
palette: {
primary: {
main: '#556cd6',
main: '#155EE4',
},
secondary: {
main: '#19857b',
@@ -17,6 +17,14 @@ const theme = createMuiTheme({
default: '#fff',
},
},
overrides: {
MuiPaper: {
elevation1: {
transition: 'box-shadow .25s',
boxShadow: '0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2)',
},
},
},
});
export default theme;