angular-material change checkbox color

前端 未结 17 1659
无人共我
无人共我 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:31

    This should take care of the default checkbox color

    md-checkbox .md-icon {
        background: green;
    }
    md-checkbox.md-default-theme.md-checked .md-icon {
        background: green;
    }
    

    read more here at Angular Material Documentation

提交回复
热议问题