How do I change the ion-radio color scheme?

Is there a simple way do change the text to white and the background to dark for the ion-radio tag?

1 Like

Right now, no. This is something though that we intend to do after 1.0 is out

1 Like

Couldn’t you style css? (View on CodePen)

.list .item-radio input:checked ~ .item-content, .list .item-radio .item-content    {
  background-color: black;
  color: white;
}

.list .item-radio .radio-icon    {
  color: white;
}
3 Likes

You could use some css on the pure css version, but there’s no predefined classes as of yet

1 Like