【发布时间】:2021-11-16 09:10:02
【问题描述】:
Material-UI (React) 中是否有办法在自定义主题中使用对同一主题中定义的变量的引用?例如,组件MuiBottomNavigation 应该使用原色(主)作为背景。
import { createTheme, useTheme } from '@mui/material/styles';
const theme = createTheme({
palette: {
primary: {
main: '#f6b1b2'
}
},
components: {
MuiBottomNavigation: {
styleOverrides: {
root: {
// This is not working
backgroundColor: {palette.primary.main}
},
}
}
}
});
【问题讨论】:
标签: reactjs material-ui