2020-01-23 14:12:26 -09:00
|
|
|
// import purple from '@material-ui/core/colors/purple'
|
|
|
|
|
|
|
|
|
|
export const DarkTheme = {
|
2020-01-19 18:59:33 -09:00
|
|
|
palette: {
|
2020-01-23 14:12:26 -09:00
|
|
|
// secondary: purple,
|
|
|
|
|
type: 'dark'
|
2020-01-19 18:59:33 -09:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-23 14:12:26 -09:00
|
|
|
export const LightTheme = {
|
2020-01-19 18:59:33 -09:00
|
|
|
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)'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|