11-12-2003, 10:13 AM -
This was easy enough. Add the following line to the appropriate [DataSlotX] section in your skin.ini file:
color = <r g b>
Where <r g b> is 3 8 bit base 10 numbers (0 to 255) seperated by spaces, representing the red, green, and blue components of the desired color. For instance:
The last line in the code above will make the text for dataslot 0 red.
Enjoy.
color = <r g b>
Where <r g b> is 3 8 bit base 10 numbers (0 to 255) seperated by spaces, representing the red, green, and blue components of the desired color. For instance:
Code:
[DataSlot0]
param = Temperature
SkinText = 0
rect = 0 0 68 13
LabelType = short
LabelRect = 0 0 10 10
font=Verdana
bold=1
italic=0
align=right
ShowUnits = 1
color = 255 0 0
The last line in the code above will make the text for dataslot 0 red.
Enjoy.