#99cfdf Color
Color Codes | |
---|---|
Hex Code | #99cfdf |
RGB Code | rgb(153, 207, 223) |
HSL Code | hsl(194, 52%, 74%) |
#99cfdf Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(153, 207, 223); }
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(194, 52%, 74%); }
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 #99cfdf
RGB Code | Hex Code | Preview |
---|---|---|
rgb(153, 207, 223, 10%) | #99cfdf1a | |
rgb(153, 207, 223, 20%) | #99cfdf33 | |
rgb(153, 207, 223, 40%) | #99cfdf4C | |
rgb(153, 207, 223, 60%) | #99cfdf99 | |
rgb(153, 207, 223, 80%) | #99cfdfCC | |
rgb(153, 207, 223, 100%) | #99cfdfFF |
Saturated and desaturated colors of #99cfdf
HSL Code | Preview |
---|---|
hsl(194, 10%, 74%) | |
hsl(194, 20%, 74%) | |
hsl(194, 40%, 74%) | |
hsl(194, 60%, 74%) | |
hsl(194, 80%, 74%) | |
hsl(194, 100%, 74%) |
#99cfdf Color Usage In CSS
body { color: #99cfdf; } p { color: rgb(153, 207, 223); } header { border-bottom:1px solid #99cfdf; }