Reputation: 51
I need to change the border colors for the following checkboxes , one to green and other to red.
<div style="margin-left:30%;margin-top: 20%;">
<mat-checkbox>Hello</mat-checkbox><br>
<mat-checkbox>Hai</mat-checkbox>
</div>
Upvotes: 3
Views: 2977
Reputation: 8623
If you want to overrid specific checkbox border, you can override the class:
.mat-checkbox-frame {
border-color: red;
}
If you want to change checkbox color. There is a color attribute.
https://stackblitz.com/edit/angular-rwjynh
Upvotes: 3