WoWInterface

WoWInterface (https://www.wowinterface.com/forums/index.php)
-   AddOn Search/Requests (https://www.wowinterface.com/forums/forumdisplay.php?f=6)
-   -   Whole ingame yellow font change (https://www.wowinterface.com/forums/showthread.php?t=59165)

Qwlberry 07-05-22 09:47 PM

Whole ingame yellow font change
 
Is there a way to change this font color in whole WoW interfaces? (Completely) ADDON/CODE MODIFICATION/ETC, any way. I hate this yellow
https://imgur.com/9yNS315

Fizzlemizz 07-06-22 10:08 AM

First check if your UI addon does this.
There are several font objects used in the UI you would have to find to change but the most common ones are GameFontNormal (GameFontNormalSmall, GameFontNormalLarge etc.)

Set GameFontNormal to green:
Code:

/run GameFontNormal:SetTextColor(0, 1, 0)
Other texts (especially in 3rd party addons) may use set fonts/size settings so you won't be able to change these "en masse"

Qwlberry 07-06-22 03:30 PM

Quote:

Originally Posted by Fizzlemizz (Post 340767)
(GameFontNormalSmall, GameFontNormalLarge etc.)

I know this ones, I will be appreciate if you (know) n tell me what else can be changed to another color (still have some yellow fonts)
Code:

"AchievementDateFont",
        "AchievementPointsFont",
        "AchievementPointsFontSmall",
        "BossEmoteNormalHuge",
        "DialogButtonNormalText",
        "FocusFontSmall",
        "GameFontNormal",
        "GameFontNormalHuge",
        "GameFontNormalLarge",
        "GameFontNormalMed3",
        "GameFontNormalSmall",
        "GameFont_Gigantic",
        "NumberFontNormalLargeRightYellow",
        "NumberFontNormalLargeYellow",
        "NumberFontNormalRightYellow",
        "NumberFontNormalYellow",
        "QuestFont_Enormous",
        "QuestFont_Super_Huge",
        "QuestFont_Super_Huge_Outline",
        "QuestTitleFontBlackShadow",
        "SplashHeaderFont"


Fizzlemizz 07-06-22 04:35 PM

You should be able to change all of those using xxx:SetTextColor(r, g, b).

The colours can be changed by code on individual fontstrings changing the text colour or by the text itself containing embeded colour code(s).

SDPhantom 07-06-22 06:54 PM

I noticed some of the areas pointed out were checkbox textures, which won't be as easily modified. The best route for those is to find the image file the texture is loaded from and replace that.

I'm guessing it's part of ElvUI since it's applying it as a theme. I don't use it, so I'm not 100% sure.


All times are GMT -6. The time now is 02:00 AM.

vBulletin © 2024, Jelsoft Enterprises Ltd
© 2004 - 2022 MMOUI