angular-material change checkbox color

前端 未结 17 1657
无人共我
无人共我 2020-12-16 11:22

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

17条回答
  •  南方客
    南方客 (楼主)
    2020-12-16 11:52

    .mat-checkbox-ripple .mat-ripple-element,.mat-checkbox-checked.mat-accent .mat-checkbox-background {
          background-color: $your-color!important;
    }
    
    .mat-checkbox-checked.mat-primary .mat-checkbox-background, .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background{
          background-color: $your-color!important;
    }
    

提交回复
热议问题