更改选择的颜色带有选择的角材料表

时间:2020-05-28 14:05:23

标签: javascript css angular angular-material

如何通过选择enter image description here

更改角度材料表中选择器的颜色

2 个答案:

答案 0 :(得分:0)

添加其他Color参数以传递主题名称 示例:<mat-checkbox color="primary"></mat-checkbox>

答案 1 :(得分:0)

适用于所有普通复选框以及标题中不确定的复选框。

::ng-deep .mat-checkbox-checked .mat-checkbox-background,
::ng-deep .mat-checkbox-indeterminate .mat-checkbox-background {
  background-color: green !important; // Example color green 
}