How to style material-ui textfield
Clash Royale CLAN TAG #URR8PPP How to style material-ui textfield I have been trying to work out how to style a material-ui.next textfield (https://material-ui-next.com/demos/text-fields/) component (React JS). <TextField id="email" label="Email" className={classes.textField} value={this.state.form_email} onChange={this.handle_change('form_email')} margin="normal" /> My classes are created as follows (I have attached relevant part): const styles = theme => ({ textField: { width: '90%', marginLeft: 'auto', marginRight: 'auto', color: 'white', paddingBottom: 0, marginTop: 0, fontWeight: 500 }, }); My problem is that I can not seem to get the colour of the text field to change to white. I seem to be able to apply styling to the overall text field (because the width styling works etc)... but I think the problem is that I am ...