1

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 Answers4

0

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=%237FBB00

Jon Uleis
  • 17,693
  • 2
  • 33
  • 42
0

Hexadecimal.

For #0x = See that post

7F = Red

BB = Green

00 = Blue

FF = Alpha

Community
  • 1
  • 1
MucaP
  • 992
  • 1
  • 10
  • 18
0

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.

  • Red: 127
  • Green: 187
  • Blue: 0
  • Alpha: 255

In CSS, you would use

rgba(127, 187, 0, 255)

Or, since FF usually means fully opaque, you don't need the alpha channel.

rgb(127, 187, 0)
#7FBB00

But sometimes the transparency goes to the beginning like AARRGGBB, so you color coulor also be

  • Alpha: 127
  • Red: 187
  • Green: 0
  • Blue: 255
Oriol
  • 274,082
  • 63
  • 437
  • 513
0

That comes from google:

It could be a Android color

or Q-Image Format

How to easy convert per Hand

Community
  • 1
  • 1
GF. Service
  • 108
  • 1
  • 8