Defines how solid a color appears.
A color's opacity is specifies using the following properties:
-rgba(red, green, blue, opacity)
-hsla(hue, saturation, lightness, opacity)
Where opacity sets the opacity of the color ranging from 0 (completely transparent) up to 1.0 (completely opaque)
To use a color in a style rule declaration, use the color value as the property value.
For example, to style a background color as gray use, background-color: #808080;
Black = #000000 rgba(0,0,0)
White = #FFFFFF rgba(255,255,255)
Red = #FF0000 rgba(255,0,0)
Green = #008000 rgba(0,128,0)
Blue = #0000FF rgba(0,0,255)
Yellow = #FFFF00 rgba(255,255,0)
Orange = #FFA500 rgba(255,165,0)
Gray = #80,80,80 rgba(128,128,128)