Using Angular 7+ and Angular Material I'm looking to change the color of the Placeholder text on input fields.
Reviewing similar questions I've tried using ::ng-deep and mat-placeholder. I got it to work using mat-placeholder, however this will be removed in future versions of Angular Material.
<form class="example-form">
<mat-form-field class="example-full-width">
<input matInput placeholder="Favorite food" value="Sushi">
</mat-form-field>
</form>
Change the color of the matInput placeholder text.