In our previous example I introduced color to a class...
.warning {background-color:#990000;}
I said it was red, but what is that odd number?
Computer screens display the colors we perceive through a combination of Red, Green, and Blue light.
This color is described in CSS as a hexadecimal** in the pattern of #RRGGBB.
In our example #990000, the red digits are medium bright and there is no green or blue, thus the color is a pure red.
If we add some blue and the number becomes #990099, we get nice purple color.
** Hexadecimal is 16-digit base numbering system (0123456789ABCDEF)
It is easiest to use a color picker and copy the number. Note the HEX color always has a hash-tag # before the number.
Contact information goes here