How to add multiple Material UI palette colors

前端 未结 1 1119
醉话见心
醉话见心 2021-02-13 02:56

I\'m trying to establish my own palette colors to match my branding in Material UI. So far I can only get the primary and secondary colors to work when applied as the background

1条回答
  •  清酒与你
    2021-02-13 03:22

    Other than needing to change purple in your MyTheme to be something like purple[500], I'm not sure why this wouldn't work for you. Are you sure you can override anything other than the primary and secondary in this way?

    Regardless, here's a workaround:

    In MyTheme.js:

    accent: { backgroundColor: purple[500], color: '#000' }
    

    Then in App.js:

    
    

    Working example here.

    0 讨论(0)
提交回复
热议问题