I have created a Custom style in which I changed the background of the complete App. Now I want to change the light blue colored items to red. I do not want to change each individual view... Is there a simple and fast method to change this just like the background of the App?
<?xml version="1.0" encoding="UTF-8"?>
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<color name="colorBackground">#A0A0A3</color>
<color name="windowBackground">#0B2265</color>
<color name="textColor">#FFFFFF</color>
<color name="highlight">#ED1B24</color>
<style name="CustomStyle" parent="android:Theme.Holo">
<item name="android:windowBackground">@color/windowBackground</item>
<item name="android:colorBackground">@color/colorBackground</item>
<item name="android:textColor">@color/textColor</item>
</style>
</resources>