#06ccfc Color
Color Codes | |
---|---|
Hex Code | #06ccfc |
RGB Code | rgb(06, 204, 252) |
HSL Code | hsl(192, 98%, 51%) |
#06ccfc Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(06, 204, 252); }
R(red), G(green), B(blue) can be number between 0-255.
A parameter is a hex characters (0–9, A–F) and optional.
hsl()
hsl(hue saturation lightness); hsl(hue saturation lightness / alpha); div { background-color: hsl(192, 98%, 51%); }
Saturation value is a percentage value between 0% unsaturated and 100% fully saturated.
Lightness value is a percentage value between 100% is white and 0% is black.
Lighter and darker colors of #06ccfc
RGB Code | Hex Code | Preview |
---|---|---|
rgb(06, 204, 252, 10%) | #06ccfc1a | |
rgb(06, 204, 252, 20%) | #06ccfc33 | |
rgb(06, 204, 252, 40%) | #06ccfc4C | |
rgb(06, 204, 252, 60%) | #06ccfc99 | |
rgb(06, 204, 252, 80%) | #06ccfcCC | |
rgb(06, 204, 252, 100%) | #06ccfcFF |
Saturated and desaturated colors of #06ccfc
HSL Code | Preview |
---|---|
hsl(192, 10%, 51%) | |
hsl(192, 20%, 51%) | |
hsl(192, 40%, 51%) | |
hsl(192, 60%, 51%) | |
hsl(192, 80%, 51%) | |
hsl(192, 100%, 51%) |
#06ccfc Color Usage In CSS
body { color: #06ccfc; } p { color: rgb(06, 204, 252); } header { border-bottom:1px solid #06ccfc; }