I want to change the color of my radio buttons. I found some examples and tried them, but it never worked. I dont know if I'm doing it wrong, but I tried these examples like this:
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 simply just want to change the color but all the examples I tried didnt work. Do I have to change the color of the mat-radio-inner-circle? If so, how?