HTML color codes may be represented in hexadecimal triplets; six-digit, three-bytes.
There is no informational difference between RGB and HEX colors.
- #ff0000
- rgb(255, 0, 0)
+ #00ff00
+ rgb(0, 255, 0)
#0000ff
rgb(0, 0, 255)
The sRGB uses 24 bits to specify a color and can produce 16,777,216 different color combinations.
Top comments (0)