React Material UI: How to give a button a custom color when disabled?

前端 未结 3 2138
面向向阳花
面向向阳花 2021-02-14 11:23

I\'m building a React App using Material UI.

If the button is disabled, it is grey and opaque. I\'d like it to be in my themes primary color and opaque.

So here

3条回答
  •  花落未央
    2021-02-14 11:50

    Or you can try createMuiTheme and customize the following property:

    import { createMuiTheme } from '@material-ui/core/styles'
    
    const theme = createMuiTheme({
      palette: {
        action: {
          disabledBackground: 'set color of background here',
          disabled: 'set color of text here'
        }
      }
    }
    

提交回复
热议问题