Is there a way to customize the color of helperText
in material-UI for highlighting errors in a TextField
? I've been struggling to change the color of helperText
with no success.
I attempted using MuiFormHelperText-root-406
to add CSS styles, but it didn't yield the desired results.
<Grid item xs={3}>
<TextField
label="EmailId"
name="emailId"
value={editItem.emailId}
onChange={this.editInputValue}
helperText={this.state.emailerror} />
</Grid>
.MuiFormHelperText-root-406{
color:rgba(255,0,0,0.5);
}