I need to adjust the font color of V1, which is a disabled input field. I want to make it darker specifically for Chrome. Any suggestions on how I can achieve this?
https://i.sstatic.net/kioAZ.png
Here's my HTML code:
<mat-form-field appearance="outline" fxFlex="100" fxFlex.gt-xs="30" class="w-100-p"
ngClass.gt-xs="pr-4">
<mat-label>Versiyon</mat-label>
<input matInput formControlName="Revision" type="text">
</mat-form-field>
Keep in mind that it's a reactive form, so here's my TS code:
Revision: new FormControl({ value: "", disabled: true }),