Is it possible to have different text colors for each tab in a mat-tab-group and change the color of the blue outline at the bottom? If so, can you provide guidance on how to achieve this?
Here is the default appearance of the tabs in my app: https://i.stack.imgur.com/6J99s.png
This is the desired look for the tabs:
https://i.stack.imgur.com/ZMfUT.png
The code for the tabs:
<mat-tab-group (selectedIndexChange)="onSelectedIndexChange($event)" [(selectedIndex)]="matTabSeleccionada">
<mat-tab class="" label="Total">
</mat-tab>
<mat-tab class="" label="Bayer">
</mat-tab>
<mat-tab class="" label="Monsanto">
</mat-tab>
</mat-tab-group>