Вы можете использовать обычный css
::ng-deep .mat-focused .mat-form-field-label {
/*change color of label*/
color: green !important;
}
::ng-deep.mat-form-field-underline {
/*change color of underline*/
background-color: green !important;
}
::ng-deep.mat-form-field-ripple {
/*change color of underline when focused*/
background-color: green !important;;
}
или создать собственную тему для применения. Вот статья, как создавать собственные темы
https://alligator.io/angular/angular-material-custom-theme/