I've been trying to customize the color of my radio buttons, but I haven't had much luck. Here are a couple of examples I attempted:
Example 1
HTML
<md-radio-button class"radio-button"> yes <md-radio-button>
CSS
//checked
.radio-button md-radio-button , md-radio-button.md-checked ._md-on{
background-color: blue;
}
Example 2
HTML (same as above)
CSS
md-radio-button.md-default-theme.md-checked .md-on, md-radio-button.md-checked .md-on{
background-color: blue;
}
I'm simply looking to change the color of the radio buttons, but none of these methods seem to be working for me. Should I be adjusting the color of the mat-radio-inner-circle instead? If so, how can I do that?