I have a Material UI Select component that is on a dark background, so for just this one component I\'d like to change it so that the text and line colours are
You can change the underline color of Select Component using two options
1. Overriding with classes
Create a element using input Props and override using classes using underline key.
}>
I applied this in your sandbox and take a look at this here
2. Using MuiThemeProvider
const theme = createMuiTheme({
palette: {
primary: green,
},
});
And apply the theme using
I have applied both in this sandbox
Customising Select