4 functions (Div / Div 2 / Div GO):
hsl(hue, saturation, lighting);see example
- hue: this value is in degrees from 0 to 360, where 0 and 360 the red color
- saturation: this percentage value is from 0 to 100
- lighting: this percentage value is from 0 to 100
hsla(hue, saturation, lighting, alpha);see example
- hue: this value is in degrees from 0 to 360, where 0 and 360 the red color
- saturation: this percentage value is from 0 to 100
- lighting: this percentage value is from 0 to 100
- alpha: this value is decimal from 0 to 255, with 0 being transparent
rgb(red, green, blue);see example
rgba(red, green, blue, alpha);see example