#Color
- 1. It is used to change the color of the text.
- 2.
Syntax :
1/*By Color Name (Any color name)*/2color : red;34/* By Hexadecimal Value (Range 0-f)*/5color:#00ff00;67/*By rgb(r,g,b) (r,g,b range (0-255))*/8color:rgb(255,90,0);910/* By hsl() (Range : hue (0-360) and saturation,lightness (0-100%))*/11color:hsl(20,90%,40%);1213/* By rgba() (Alpha is used to set the transparency.Range : alpha (0-1)) */14color: rgba(0,0,255,0.4);1516/* By hsla() (Range : alpha (0-1)) */17color:hsla(20,90%,40%,0.8);