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 ?
            Asked
            
        
        
            Active
            
        
            Viewed 427 times
        
    1
            
            
        - 
                    hexadecimal colour codes – Griffin Nov 20 '16 at 18:38
- 
                    1Could it be [RGBA](https://en.wikipedia.org/wiki/RGBA_color_space)? – Biffen Nov 20 '16 at 18:38
4 Answers
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
            
            
        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
 
     
    