I am trying to change the color of the Title Text in the ActionBar but I cannot seem to get it to work
this is my style I am trying to use
<style name="TitleColorStyle" parent="android:TextAppearance.Holo.Widget.ActionBar.Title">
<item name="android:textColor">@android:color/white</item>
</style>
and in my app theme I use the titleTextStyle
<style name="AppTheme" parent="android:Theme.Holo.Light">
<item name="android:windowContentOverlay">@null</item>
<item name="android:actionOverflowButtonStyle">@style/MyActionButtonOverflow</item>
<item name="android:actionDropDownStyle">@android:style/Widget.Holo.Spinner</item>
<item name="android:titleTextStyle">@style/TitleColorStyle</item>
</style>
am I not using the correct style to change the color?