I have tried to change the color of the text in input in AngularJS Material with CSS but somehow haven't got it to work. What am I doing wrong?
This is my input field:
<md-input-container>
<label>Title</label>
<input ng-model="user.title">
</md-input-container>
and this is how I have tried to change the color of the text.
<md-input-container style='color:#e52973'>
<label>Title</label>
<input style='color:#e52973' ng-model="user.title">
</md-input-container>
input{background-color:#e52973}?