add primary colors

update button
This commit is contained in:
Barry Gitarts 2019-11-18 12:25:24 -05:00 committed by Barry G
parent 27ffdf1fa3
commit be706ef2a6
2 changed files with 6 additions and 2 deletions

View File

@ -18,7 +18,7 @@ const useStyles = makeStyles(theme => ({
backgroundColor: theme.palette.primary[500],
color: 'white',
'&:hover': {
backgroundColor: "#34489f",
backgroundColor: theme.palette.primary['hov'],
}
},
disabledButton: {

View File

@ -11,7 +11,11 @@ export default createMuiTheme({
}
},
palette: {
primary: { 500: '#1AA56E' },
primary: {
500: '#1AA56E',
hov: '#137C53',
A500: '#1AA56E33'
},
common: {
grey: '#F5F7F8'
},