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
0xFBAC46FF is as you suggested a hex code. The 0x is "computer speak" for "the following series of numbers is going to be in hex".
On the web (HTML, CSS) hex colors normally appear with a # in front of them so the first thing is to replace the 0x withe a #.
#FBAC46FF
Each pair of numbers refers to a color component FB = red, AC = green, 46 = blue, FF = alpha/transparency. FF is opaque, 00 is transparent. Each of the components is on a scale of 00 to FF.
To see what the color is online, the easiest thing is to remove the alpha digits so you are left with #FBAC46.
Copy and paste that into google: https://www.google.com/search?q=%23FBAC46 and you get a color. Drag the color picker around it will give you the hex for any color imaginable. Add the FF back on, swap the # for 0x and you have translated it back to the format used by the game.
Thanks.