Como usar a cor secundária no material Ui Usestyle
import { makeStyles } from '@material-ui/core/';
import { Typography } from '@material-ui/core';
const useStyles = makeStyles(theme => ({
number: {
color: theme.palette.secondary.main
}
}));
Salo Hopeless