The picture is a little too bright to show much detail but you can see the color change.
There is a file in common.vpp_pc called customization_default_items.xtbl
this file contains the outfit that the playa is wearing at the beginning of the game
which consists of the orange jumpsuit, white T-shirt, socks, shoes, etc ...
Well the colors in this file can be changed.
(Original)
Code:
<Default>
<Item>short sleeve jumpsuit</Item>
<Wear_Option>cmSui_uJumpsui02.cmeshx</Wear_Option>
<Variant>Material#3</Variant>
<Color_Pool>
<Character_Color_Grid>
<Color_Element>
<Color>orange</Color>
</Color_Element>
<Color_Element>
<Color>orange</Color>
</Color_Element>
<Color_Element>
<Color>orange</Color>
</Color_Element>
</Character_Color_Grid>
</Color_Pool>
<Logo>LOG_256x256_Stilcorrect</Logo>
<Logo_Color>Black</Logo_Color>
<Gender>male</Gender>
</Default>
<Default>
<Item>short sleeve jumpsuit</Item>
<Wear_Option>cmSui_uJumpsui02.cmeshx</Wear_Option>
<Variant>Material#3</Variant>
<Color_Pool>
<Character_Color_Grid>
<Color_Element>
<Color>orange</Color>
</Color_Element>
<Color_Element>
<Color>orange</Color>
</Color_Element>
<Color_Element>
<Color>orange</Color>
</Color_Element>
</Character_Color_Grid>
</Color_Pool>
<Logo>LOG_256x256_Stilcorrect</Logo>
<Logo_Color>Black</Logo_Color>
<Gender>female</Gender>
</Default>
Note that there are two entries for the jumpsuit, shoes and socks
One is for the male variant and the other for the female.
You can change the color of this clothing. It will not change in the
cutscene but the playa is wearing it once the cutscene ends
(modded)
Code:
<Default>
<Item>short sleeve jumpsuit</Item>
<Wear_Option>cmSui_uJumpsui02.cmeshx</Wear_Option>
<Variant>Material#3</Variant>
<Color_Pool>
<Character_Color_Grid>
<Color_Element>
<Color>Abyssal Purple</Color>
</Color_Element>
<Color_Element>
<Color>Abyssal Purple</Color>
</Color_Element>
<Color_Element>
<Color>Abyssal Purple</Color>
</Color_Element>
</Character_Color_Grid>
</Color_Pool>
<Logo>LOG_256x256_Stilcorrect</Logo>
<Logo_Color>White</Logo_Color>
<Gender>male</Gender>
</Default>
<Default>
<Item>short sleeve jumpsuit</Item>
<Wear_Option>cmSui_uJumpsui02.cmeshx</Wear_Option>
<Variant>Material#3</Variant>
<Color_Pool>
<Character_Color_Grid>
<Color_Element>
<Color>Abyssal Purple</Color>
</Color_Element>
<Color_Element>
<Color>Abyssal Purple</Color>
</Color_Element>
<Color_Element>
<Color>Abyssal Purple</Color>
</Color_Element>
</Character_Color_Grid>
</Color_Pool>
<Logo>LOG_256x256_Stilcorrect</Logo>
<Logo_Color>White</Logo_Color>
<Gender>female</Gender>
</Default>
In the interest of learning I did try to add a new clothing item
but that did not work. However it did not crash the game.