Text color not working in Material-UI Theme
问题 When creating a theme for colors with Material-UI, I set contrast text to white (#fff). It is working for the button with primary color, but not secondary. Tried overrides as described here: Material UI: Unable to change button text color in theme. If an override will solve it, then I need help writing one. const colortheme = createMuiTheme({ palette: { primary: { main: '#e91e63' }, secondary: { main: '#03a9f4' }, contrastText: '#fff', } }); Expecting both buttons to have white text. Instead