答案 0 :(得分:1)
我最终在主要的mui主题中添加了一些代码。
const theme = createMuiTheme({
palette: {
primary: {
main: '#39870c',
ligth: '#6cb842',
dark: '#005900'
},
secondary: {
light: '#01689b',
main: '#0044ff',
contrastText: '#ffcc00',
},
},
overrides: {
MuiInputLabel: {
root: {
color:'black',
fontSize: 13,
},
},
}
});
有了覆盖,我基本上可以改变任何东西。我希望这对以后的人有所帮助,因为这真的很烦人。
答案 1 :(得分:0)
这里的另一个选项:insted覆盖您可以用作标签props中的Typography组件。参见示例
select bool_and(start_date > CURRENT_DATE) AS isActive
希望这会对某人有所帮助。