I was looking for a way to manipulate fade colors from my material ui theme. So I found this solution:
import { fade } from '@material-ui/core/styles/colorManipulator';
then in your styles:
backgroundColor: fade(theme.palette.secondary.main, 0.1),
I was looking for a way to manipulate fade colors from my material ui theme. So I found this solution:
import { fade } from '@material-ui/core/styles/colorManipulator';
then in your styles:
backgroundColor: fade(theme.palette.secondary.main, 0.1),
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)