UI: Use login theme everywhere

This commit is contained in:
Deluan
2020-01-23 18:12:26 -05:00
parent 3cc6d9de30
commit 35aeb0a396
4 changed files with 15 additions and 7 deletions
+29
View File
@@ -0,0 +1,29 @@
// import purple from '@material-ui/core/colors/purple'
export const DarkTheme = {
palette: {
// secondary: purple,
type: 'dark'
}
}
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)'
}
}
}
}
}