为了账号安全,请及时绑定邮箱和手机立即绑定

更改默认文本颜色材质 UI

更改默认文本颜色材质 UI

拉风的咖菲猫 2021-11-12 17:29:02
我在哪里可以更改 Material UI 主题中的默认文本颜色?设置primary,secondary以及error作品const styles = { a: 'red', b: 'green', ... };createMuiTheme({    palette: {        primary: {          light: styles.a,          main: styles.b,          dark: styles.c,          contrastText: styles.d        },        secondary: {          light: styles.aa,          main: styles.bb,          dark: styles.cc,          contrastText: styles.dd        },        error: {          light: styles.aaa,          main: styles.bbb,          dark: styles.ccc,          contrastText: styles.ddd,        },    ...,    }...,}现在,当我使用<Typography />组件时,我可以这样做<Typography  color='primary'  variant='h6'>  Foo</Typography>这给了它我在palette.primary.main.但是,当我将color道具留空时<Typography  variant='h6'>  Foo</Typography>我给了一个灰色的颜色。那个颜色是在哪里定义的?我可以在哪里定义额外的文本颜色primary,secondary以及error?Simplay 添加另一个键palette不起作用...createMuiTheme({    palette: {        ...,        text1: {          light: styles.t,          main: styles.tt,          dark: styles.ttt,          contrastText: styles.tttt,        },    ...    }...}
查看完整描述

2 回答

?
红糖糍粑

TA贡献1815条经验 获得超6个赞

它是这样完成的。


createMuiTheme({

    palette: {

        ...,

        text: {

          primary: styles.t,

          secondary: styles.tt,

          disabled: styles.ttt,

          hint: styles.tttt,

        },

    ...

    }

...

}

确保那primary是color code,而不是object。颜色可以这样使用


<Typography

    color='textPrimary'> // or 'textSecondary', 'hint', 'disabled'

    Foo Bar

</Typography>


查看完整回答
反对 回复 2021-11-12
?
呼啦一阵风

TA贡献1802条经验 获得超6个赞

如果要更改“material-ui”Typography 组件的默认颜色,可以使用这种代码。


import { createMuiTheme, ThemeProvider, Typography } from '@material-ui/core';


const MuiTheme = createMuiTheme({

  typography: {

    allVariants: {

      color: 'red'

    }

  }

});


const App = () => {

  return (

    <ThemeProvider theme={MuiTheme}>

      <Typography>Hi there</Typography>

    </ThemeProvider>

  );

};


export default App;

这会将 Typography 组件的默认颜色更改为您想要的任何颜色(对于此示例,它使默认颜色为红色),当然它会通过在 Typography 组件中使用“color”属性来更改。


查看完整回答
反对 回复 2021-11-12
  • 2 回答
  • 0 关注
  • 186 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信