[Q] How to change font color in settings! HELP

Search This thread

2010matej

Account currently disabled
Sep 27, 2011
2,868
1,203
27
Maribor
www.youtube.com
Redmi Note 8 Pro
Hi guys, I ask this here,because there are so much good developers,who might help!

I really need help and I want to learn how to change color of text in settings (from white to black for example) ? I know to change background,but this isnt the same. I want my color black !

Here is the picture how I want that text looks in settings:
iod-screen.png
:cyclops:
 

kreatonn

Senior Member
Feb 17, 2013
821
169
Muar
First decompile ur framework res.apk, go to ur decompiled file folder.
Do this:~
Go to this directory

res\values
Styles
for fonts widget:
<style name="Widget.TextView"
parent="@style/Widget">
<item name="textColor">**#ffffffff**</
item>
</style>

Change **#???????? to what colour u want by using hex codes.

Do this also:~

Framework-res.apk\res\values
Colors (Y2)
for secondary popup fonts:
<?xml version="1.0"
encoding="utf-8"?>
<resources>
<color
name="**bright_foreground_light">#ffffffff **</
color>
</resources>


Please give me ur framework, i'll help u;)
 
Last edited:
  • Like
Reactions: 2010matej

2010matej

Account currently disabled
Sep 27, 2011
2,868
1,203
27
Maribor
www.youtube.com
Redmi Note 8 Pro
First decompile ur framework res.apk, go to ur decompiled file folder.
Do this:~
Go to this directory

res\values
Styles
for fonts widget:
<style name="Widget.TextView"
parent="@style/Widget">
<item name="textColor">**#ffffffff**</
item>
</style>

Change **#???????? to what colour u want by using hex codes.

Do this also:~

Framework-res.apk\res\values
Colors (Y2)
for secondary popup fonts:
<?xml version="1.0"
encoding="utf-8"?>
<resources>
<color
name="**bright_foreground_light">#ffffffff **</
color>
</resources>


Please give me ur framework, i'll help u;)

Uh thank you very much! Here is framework-res.apk, extract it after download:
http://www.mediafire.com/?nk7fx2c46c3eeyk
 

kreatonn

Senior Member
Feb 17, 2013
821
169
Muar
Do u want to change it in what colour?? U want change only settings.apk or whole font??

Sent from my Xperia Miro using xda premium
 

Top Liked Posts

  • There are no posts matching your filters.
  • 1
    First decompile ur framework res.apk, go to ur decompiled file folder.
    Do this:~
    Go to this directory

    res\values
    Styles
    for fonts widget:
    <style name="Widget.TextView"
    parent="@style/Widget">
    <item name="textColor">**#ffffffff**</
    item>
    </style>

    Change **#???????? to what colour u want by using hex codes.

    Do this also:~

    Framework-res.apk\res\values
    Colors (Y2)
    for secondary popup fonts:
    <?xml version="1.0"
    encoding="utf-8"?>
    <resources>
    <color
    name="**bright_foreground_light">#ffffffff **</
    color>
    </resources>


    Please give me ur framework, i'll help u;)