quintodrome/ui/src/layout/themes.js

27 lines
497 B
JavaScript
Raw Normal View History

2020-01-19 18:59:33 -09:00
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)'
}
}
}
}
}