Cómo usar el color secundario en el material de la interfaz de usuario del material

import { makeStyles } from '@material-ui/core/';
import { Typography } from '@material-ui/core';

const useStyles = makeStyles(theme => ({
      number: {
        color: theme.palette.secondary.main
      }
    }));
Salo Hopeless