【发布时间】:2018-07-17 00:31:16
【问题描述】:
const fontWeightMedium = 500;
const theme = createMuiTheme({
typography: {
// Use the system font.
fontFamily:
'forzaBook',
fontWeightMedium,
body1: {
fontWeight: fontWeightMedium,
},
button: {
fontStyle: 'italic',
},
caption: {
fontWeight:100
}
},
palette: {
primary: orange,
secondary: {
...grey,
// A400: '#00e677',
},
contrast: 'white',
error: red,
}
});
这是我目前用来更改字体和一些排版属性的方法。但我需要更改标题的字体。有谁知道怎么做?
【问题讨论】:
标签: javascript reactjs fonts material-ui