skip to Main Content

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


  1. 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

    Login or Signup to reply.
  2. Hexadecimal.

    For #0x = See that post

    7F = Red

    BB = Green

    00 = Blue

    FF = Alpha

    Login or Signup to reply.
  3. 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
    Login or Signup to reply.
  4. That comes from google:

    It could be a Android color

    or Q-Image Format

    How to easy convert per Hand

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search