I was trying to customize the default color of Angular Material Radio buttons. I managed to change the radio button color successfully.
<mat-radio-group>
<mat-radio-button value="1">Option 1</mat-radio-button>
<mat-radio-button value="2">Option 2</mat-radio-button>
</mat-radio-group>
However, I encountered an issue where I couldn't modify the outer ripple effect color when clicking on an option. Can someone please assist me in resolving this problem?