I want to change the Color of my action Bar instead of white text I want #59380d so I added the color to a color.xml like this:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:color="#59380d"/>
</selector>
And Then I call it into my styles.xml like this:
<resources>
    <style name="AppBaseTheme" parent="android:Theme.Light">
        <item name="android:textColor">@color/header</item>
    </style>
    <!-- Application theme. -->
    <style name="AppTheme" parent="AppBaseTheme">
        <item name="android:textColor">@color/header</item>
    </style>
</resources>
And finally at my AndroidManifest I set it the aplication like this:
<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:name="com.app.activities.MyAp"
    android:theme="@style/AppTheme" >
 ...
</aplication>
But the text of the Action Bar still White. What I'm doing wrong
 
     
    