I want to change font color of this tab activity:
using this style :
<style name="MyTheme" parent="MyTheme.Base"/>
<style name="MyTheme.Base" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="windowNoTitle">true</item>
<item name="windowActionBar">false</item>
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="drawerArrowStyle">@style/IconStyle</item>
<item name="android:actionBarTabTextStyle">@style/tabtextcolor</item>
</style>
<style name="IconStyle" parent="@style/Widget.AppCompat.DrawerArrowToggle">
<item name="spinBars">true</item>
<item name="color">@color/colorAccent</item>
</style>
<style name="tabtextcolor" parent="android:Widget.Holo.Light.ActionBar.TabText">
<item name="android:textColor">@color/colorAccent</item>
</style>
but the tab text color still white. what did I miss here? thank you.