There are different ways of defining background color; each color has a code name (white, for instance, is h4) or a hexadecimal numerical representation, or is created by ‘mixing’ the values of the constituent colours red, green and blue ion given amounts.
Thus, if one wants a white background, a simple command using the ‘h4’ name will ensure that it is so, whereas if you need a mix you simply include in the command the amount or red, green and blue – in that order – in a range between 0-255.
For instance, the command
{ background-colour: rgb( 101, 117, 208); }
While this may sound complex, it is simple once you get the hang of it, and there are tables of colors, and color names for CSS, available on the web.