CSS Colors

Color Property

Used to set the color of the foreground

<!--By using the color name.-->
color : purple;

<!--By using the color code which is hexa-decimal value-->
color : #ffffff;

<!--By using the color RGB value-->
color : rgb( 255, 255, 255 );

Background-color Property

Used to set the colot of the background.

<!--By using the backgroud-color name.-->
backgroud-color : purple;

<!--By using the backgroud-color code which is hexa-decimal value-->
backgroud-color : #ffffff;

<!--By using the backgroud-color RGB value-->
backgroud-color : rgb( 255, 255, 255 );

Color Systems

There are many color systems in css :-

Color Picker :-

used to get the color rgb, hex etc value
COLOR PICKER