26 lines
497 B
JavaScript
26 lines
497 B
JavaScript
export const darkTheme = {
|
|
palette: {
|
|
type: 'dark' // Switching the dark mode on is a single property value change.
|
|
}
|
|
}
|
|
|
|
export const lightTheme = {
|
|
palette: {
|
|
secondary: {
|
|
light: '#5f5fc4',
|
|
main: '#283593',
|
|
dark: '#001064',
|
|
contrastText: '#fff'
|
|
}
|
|
},
|
|
overrides: {
|
|
MuiFilledInput: {
|
|
root: {
|
|
backgroundColor: 'rgba(0, 0, 0, 0.04)',
|
|
'&$disabled': {
|
|
backgroundColor: 'rgba(0, 0, 0, 0.04)'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|