Steam telepítése
belépés
|
nyelv
简体中文 (egyszerűsített kínai)
繁體中文 (hagyományos kínai)
日本語 (japán)
한국어 (koreai)
ไทย (thai)
Български (bolgár)
Čeština (cseh)
Dansk (dán)
Deutsch (német)
English (angol)
Español - España (spanyolországi spanyol)
Español - Latinoamérica (latin-amerikai spanyol)
Ελληνικά (görög)
Français (francia)
Italiano (olasz)
Bahasa Indonesia (indonéz)
Nederlands (holland)
Norsk (norvég)
Polski (lengyel)
Português (portugáliai portugál)
Português - Brasil (brazíliai portugál)
Română (román)
Русский (orosz)
Suomi (finn)
Svenska (svéd)
Türkçe (török)
Tiếng Việt (vietnámi)
Українська (ukrán)
Fordítási probléma jelentése
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.