I\'m using checkbox of angular-material2. Currently the default color of checkbox is coming as purple color. Looks like they have changed default color of checkbox from
The following will keep frame grey when unchecked but change to custom color when checked:
relevant-scss-file.scss
mat-checkbox { &.mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background { background: rgb(0,178,0); } }