Format | Sample | Color |
---|---|---|
3 hex characters | #F00 | Red |
3 hex characters without hashmark | F0F | Fuchsia |
6 hex characters | #FFFFFF | White |
6 hex characters without hashmark | 808080 | Gray |
8 hex characters | #FF00007F | Red at 50% Opacity |
rgb() | rgb(255,255,0) | Yellow |
rgba() | rgba(0,255,255,0.5) | Aqua with 50% Opacity |
RGB values with spaces | 255 255 255 | White |
RGB values with commas | 255,255,255 | White |
RGBA values with spaces | 255 255 0 0.75 | Yellow with 75% Opacity |
color name with alpha | red 0.5 | Red with 50% Opacity |
3 hex characters with alpha | 333 .5 | #333333 with 50% Opacity |
6 hex characters with alpha | 696969 .5 | DimGray with 50% Opacity |