Need Theme help

CHP

Member
Joined
Nov 12, 2010
Messages
130
Reaction score
0
CAP201102282345.jpg


I need help fixing this font color that blends in to be black... does anybody have any ideas? This is on ApeX 1.4.1. Any help is appreciated and the one who solves this gets credit for helping me. :)
 
Last edited:

JsinLegacy

Premium Member
Premium Member
Theme Developer
Joined
Apr 4, 2010
Messages
355
Reaction score
0
framework-res.apk>res>values>styles.xml

then look for these two lines


<style name="TextAppearance.Widget.IconMenu.Item" parent="@style/TextAppearance.Small">
<item name="textColor">?textColorPrimaryInverse</item>

that one edits the main menus you have pictured...

then search for

<style name="Theme.ExpandedMenu" parent="@style/Theme">
<item name="listViewStyle">@style/Widget.ListView.Menu</item>
<item name="windowAnimationStyle">@style/Animation.OptionsPanel</item>
<item name="background">@null</item>
<item name="itemTextAppearance">?textAppearanceLargeInverse</item>
</style>

thats edits the menus that pop up when you click more

the red highlighted is what you want to edit.. you can just throw a hex color in there to get the text the color you want
 
Top