quintodrome/ui/src/layout/Themes.js

30 lines
503 B
JavaScript
Raw Normal View History

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