Hey everyone,
I ran into the following error while trying to import colors in MaterialUI:
Module not found: Can’t resolve ‘material-ui/styles/colors’
It turns out that the path to colors changed in V1, so a lot of guides aren’t quite right. All you need to do is change it to the following:
/* import {grey, amber} from ‘material-ui/styles/colors’ Original */
import {grey, amber} from ‘material-ui/colors’ /* New */
Thanks to this Github post for the answer: https://github.com/mui-org/material-ui/issues/6446