How to override selected color in theme override for material ui for react
问题 I would like to override the selected text color for all tabs in material ui for React. I know I can override some portions with code such as this: const theme = createMuiTheme({ overrides: { MuiTab: { root: { color: '#000000', backgroundColor: '#ffffff', '&:hover': { backgroundColor: 'rgba(108, 130, 168, 0.11764705882352941)', color: '#000000', } } } } }); followed by <MuiThemeProvider theme={theme}> <HomePage/> </MuiThemeProvider> However, when the tab is selected it applies a class such as