How do you change color, now that jersey system has been introducted?

Narvana

Chieftain
Joined
Nov 20, 2016
Messages
62
All I see is lines of code like that one:

<Type>LEADER_CATHERINE_DE_MEDICI_ALT</Type>
<Usage>Unique</Usage>
<PrimaryColor>COLOR_STANDARD_WHITE_LT</PrimaryColor>
<SecondaryColor>COLOR_STANDARD_YELLOW_DK</SecondaryColor>
<Alt1PrimaryColor>COLOR_STANDARD_BLUE_MD</Alt1PrimaryColor>
<Alt1SecondaryColor>COLOR_STANDARD_YELLOW_LT</Alt1SecondaryColor>
<Alt2PrimaryColor>COLOR_STANDARD_WHITE_LT</Alt2PrimaryColor>
<Alt2SecondaryColor>COLOR_STANDARD_BLUE_MD</Alt2SecondaryColor>
<Alt3PrimaryColor>COLOR_STANDARD_BLUE_DK</Alt3PrimaryColor>
<Alt3SecondaryColor>COLOR_STANDARD_RED_MD</Alt3SecondaryColor>

But where do I change the actual values?
 
The following directory (in a Windows installation, assuming Steam) that you want is C:\Program Files (x86)\Steam\steamapps\common\Sid Meier's Civilization VI\Base\Assets\UI\Colors.

In there, you'll see a file called PlayerStandardColors.xml. This is where the RGBA values are defined. As an example:

Code:
<Row>
            <Type>COLOR_STANDARD_YELLOW_DK</Type>
            <Color>134,114,2,255</Color>
        </Row>

I would not recommend editing the base-game file directly. At the very least, make a backup first. Ideally, configure custom civilization colours through a mod.
 
Back
Top Bottom