I am trying to show a TextField in orange color:
<TextField
id={field_meta.name}
label={field_meta.title}
defaultValue={field_meta.value? field_meta.value: ""}
onChange={this.handleChange}
margin="normal"
inputProps={{style: {borderColor: "orange"}}}
fullWidth
helperText={"Changes have not been saved yet."}
/>
However, the TextField is displaying in regular colors:
https://i.stack.imgur.com/dU4ml.png
Interestingly, setting the 'color' property does work though:
<TextField
id={field_meta.name}
label={field_meta.title}
defaultValue={field_meta.value? field_meta.value: ""}
onChange={this.handleChange}
margin="normal"
inputProps={{style: {color: "orange"}}}
fullWidth
helperText={"Changes have not been saved yet."}
/>