Backstage.io MUI button overrides

24 Views Asked by At

I want to override the button color on the backstage main panel screens such as Components, Create and API. This worked for rounding corners and font size but not changing color for those buttons (see attached screen shot)

 ...
 MuiButton: {
    styleOverrides: {
      root: ({ theme }) => ({
        borderRadius: 3,
        fontSize: '1rem',
        
      }),
      contained: {
        boxShadow: 'none',       
      },         
    },
  },
   ....

enter image description here

0

There are 0 best solutions below