Ruff_Hi Wrote:Ok, I will bite - which three numbers should I change to remove the shadow?
I'm at work so don't have it in front of me, but search for "shadow" in the file and you'll find the relevant section. The number in question is the fourth value in each of the GColor() expressions. That's the alpha (opacity) value; changing each to 0 makes the shadow fully transparent so it effectively doesn't get drawn.
Edit: Here's the relevant section of Civ4Theme_Common.thm:
.TextShadow_Default = GColor( 0, 0, 0, 255);
.TextShadow_Select = GColor( 0, 0, 0, 255);
.TextShadow_Inactive = GColor( 0, 0, 0, 255);
.TextShadow_InactiveSelect = GColor( 0, 0, 0, 255);
.TextShadow_Disable = GColor( 0, 0, 0, 128);
.TextShadow_DisableSelect = GColor( 0, 0, 0, 128);
Change the last value of each to 0 to disable the drop-shadow. The required ones are _Default, _Inactive, and _Disable. The three "Select" ones are optional; they only matter when you rollover some selectable text such as options on the Civics screen.
And yeah, I'm not sure what language it is -- Python doesn't use curly braces, but C doesn't have a "with" keyword.