I need to change the color of the action bar text, hamburger icon,overflow icon in the action bar. I tried the following:-
<!-- Title text -->
<item name="android:textColorPrimary">@android:color/white</item>
<!-- Title color in AppCompat.Light -->
<item name="android:textColorPrimaryInverse">@android:color/white</item>
<!-- Menu text-->
<item name="actionMenuTextColor">@android:color/white</item>
<!-- Overflow -->
<item name="android:textColorSecondary">@android:color/white</item>
<!-- This will change drawer icon -->
<item name="android:popupBackground">@android:color/white</item>
But the above code forces color change in many other places, like the overlay popup, edit text text color, is there any way to change the color in the desired place alone?