Typography
Customize Theme Typography
// material-ui
import { Theme, TypographyVariantsOptions } from '@mui/material/styles';
/**
* Typography used in the theme
*/
export default function Typography(theme: Theme, borderRadius: number, fontFamily: FontFamily): TypographyVariantsOptions {
return {
...
h5: {
...
fontWeight: 900 // changed this to make it 900 from 500
},
...
};
});