gpt4 book ai didi

reactjs - Material-ui v.1 - 使用主题定义组件的背景

转载 作者:行者123 更新时间:2023-12-03 14:08:27 25 4
gpt4 key购买 nike

我正在使用React的material-ui v.1库,并且想要设置Paper组件的背景。

我想使用主题来做到这一点。

我正在使用顶级

const theme = createMuiTheme({
palette: {
//type: 'light'
}
});

<MuiThemeProvider theme={theme}>
</MuiThemeProvider>

我应该在 createMuiTheme 中放入什么来做到这一点?

我尝试了几个选项(例如 palette:{paper: {backgroundColor: 'black'}}paper: {backgroundColor: 'black'},和 backgroundColor: {paper: 'black'}) 但没有任何效果。

注意:类型:'light'类型:'dark'工作正常。

最佳答案

根据https://material-ui-next.com/customization/themes/ ,应使用以下属性:

const theme = createMuiTheme({
palette: {
background: {
paper: 'red'
}
}
});

关于reactjs - Material-ui v.1 - 使用主题定义组件的背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47946565/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com