带有材质UI的所有文本白色槽createMuiTheme

时间:2020-07-31 01:58:44

标签: material-ui

当前,我已经创建了一个主题,其对比度和原色都设置为#fff。但是,并不是所有的文本看起来都是白色的(这是我想要的结果):

theme.js

const theme = createMuiTheme({
spacing: 8,
palette: {
    type: 'dark',
    primary: {
        light: '#484848',
        main: '#212121',
        dark: '#000000',
        contrastText: '#fff',
    },
    secondary: {
        light: '#6d6d6d',
        main: '#424242',
        dark: '#1b1b1b',
        contrastText: '#fff',
    }
},
});

结果: enter image description here

0 个答案:

没有答案