The basic standard color of web design color is RGB. Red Green and Blue.
RGB Basics
RGB stands for Red, Green, and Blue, the primary colors of light used in digital displays and imaging. Each color channel can be adjusted to create millions of possible colors. In the standard 8-bit format, each channel has an integer value from 0 to 255, where 0 represents no intensity and 255 represents full intensity. For example, rgb(255, 0, 0) produces pure red, while rgb(0, 0, 0) is black and rgb(255, 255, 255) is white.
rg