todo/frontend/src/theme.js

14 lines
211 B
JavaScript
Raw Normal View History

2021-06-17 21:00:56 +00:00
import grey from '@material-ui/core/colors/grey';
const theme = {
palette: {
primary: {
main: grey[200]
},
secondary: {
main: grey[200]
}
}
};
export default theme;