Mario said:
gman said:
I am trying to make some of my own and was wondering if there is any part on the image that determines the colour of the number or is it predefined?
Thats defined in the teaqm database file. Potentially you could use a hex editor to change it.
I have just worked it out.
It is actually in the teambits database file. All the strips (jerseys) are at the top of this file. Each jersey has 43 hex values.
To form a colour you need a red value, a green value and a blue value. For example black has RGB values of 0,0,0, white 255,255,255, and a very bright green 3,255,68. In Paint Shop Pro if you hold your mouse pointer over a colour in the palette it gives you the RGB values (I assume it is the same for other programs).
For each jersey:
- the 33rd hex value = red value
- the 34th hex value = green value
- the 35th hex value = blue value
Don't forget to convert your colour values to hex. For example the bright green colour would have hex values of 03 FF 44.
Happy customising!!! 8)