The status bar, app bar icons, and alert dialog's positive and negative buttons all of these went from their default colors to purple after going into styles.xml
and doing the following:
<style name="AppTheme" parent="Theme.MaterialComponents.Light.NoActionBar">
<item name="shapeAppearanceMediumComponent">@style/AppShapeAppearance.MediumComponent</item>
</style>
I used to have Theme.AppCompat
and I didn't have this purple color issue. How do I change the purple colors back to its default colors from AppCompat
?