I have this code for a color,0x7FBB00FF
I don’t know how are called this colors with 0x and where I can found a convert for photoshop ?
I have this code for a color,0x7FBB00FF
I don’t know how are called this colors with 0x and where I can found a convert for photoshop ?
4
Answers
It’s RGBA: hexadecimal with an alpha value at the end –
FF
.Type the relevant bit of the color code into Google to see it as a hex color (
#7FBB00
): https://www.google.com/search?q=%237FBB00Hexadecimal.
For #0x = See that post
7F = Red
BB = Green
00 = Blue
FF = Alpha
The
0x
prefix usually means hexadecimal.And each color channel usually uses 1 byte, that is, it ranges between 00 and FF. That’s 2 digits in hexadecimal.
The convention order is red (R), green (G), blue (B).
Sometimes an alpha (A) component with the transparency is also added.
So your color is probably in RRGGBBAA.
In CSS, you would use
Or, since FF usually means fully opaque, you don’t need the alpha channel.
But sometimes the transparency goes to the beginning like AARRGGBB, so you color coulor also be
That comes from google:
It could be a Android color
or Q-Image Format
How to easy convert per Hand