Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
The colors are created like this Color(redValue, blueValue, greenValue, optionalAlphaValue).
The numbers can be anything between 0 and 255 with 0 being none of that color and 255 being it's brightest. Computers nearly always use additive color (meaning it behaves like light and combining colors makes white) as opposed to subtractive color (combining colors leads to black or brown, this how real life paints behave) so 255, 255, 255 is pure white. Alpha is how transparent the color is and is only valid in cases when transparency is desired, ignore it and don't set it for a completely opaque color. With alpha 0 is completely invisible and 255 is completely opaque.
If you have any more questions just ask!