Angular 6 Material - Hues and How to change the color of mat radio button

后端 未结 5 2014
悲&欢浪女
悲&欢浪女 2021-01-11 14:47

How can I change the color of the using CSS?

Saw on another post that if I use the following code, it would change it, but I had no luck with it so far.



        
5条回答
  •  说谎
    说谎 (楼主)
    2021-01-11 15:31

    ::ng-deep .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element {
      background-color: blue !important;
    }
    
    ::ng-deep .mat-radio-button.mat-accent .mat-radio-inner-circle {
      background-color: blue!important;   /*inner circle color change*/
    }
    
    ::ng-deep.mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle {
     border-color:blue!important; /*outer ring color change*/
    }
    

提交回复
热议问题