In this video i will talk about css Colors.

Colors are specified using predefined color names, or RGB, HEX, HSL, RGBA, HSLA values.

RGB Value
In CSS, a color can be specified as an RGB value, using this formula:

rgb(red, green, blue)

HEX Value
In CSS, a color can be specified using a hexadecimal value in the form:

#rrggbb

HSL Value
In CSS, a color can be specified using hue, saturation, and lightness (HSL) in the form:

hsl(hue, saturation, lightness)