How do I set the color of RadioButtons in a checkable PopupMenu. I am using the AppCompat version. I successfully set the background color and the text color via the styles, but I cannot figure out how to set the color of the radio buttons.
This is what I have so far;
    <style name="AppTheme" parent="Theme.AppCompat.DayNight.NoActionBar">
        <item name="popupMenuStyle">@style/myPopupMenuStyle</item>
        <item name="textAppearanceLargePopupMenu">@style/myPopupMenuTextAppearanceLarge</item>
        <item name="textAppearanceSmallPopupMenu">@style/myPopupMenuTextAppearanceSmall</item>
    </style>
   <style name="myPopupMenuStyle" parent="Widget.AppCompat.PopupMenu">
        <item name="android:popupBackground">@color/accent</item>
        <item name="android:textColor">@android:color/white</item>
    </style>
   <style name="myPopupMenuTextAppearanceSmall" parent="TextAppearance.AppCompat.Widget.PopupMenu.Small">
        <item name="android:textColor">@android:color/white</item>
    </style>
    <style name="myPopupMenuTextAppearanceLarge" parent="TextAppearance.AppCompat.Widget.PopupMenu.Large">
        <item name="android:textColor">@android:color/white</item>
    </style>
I have tried many other attributes, but nothing helped.