#99d9d0 Color
Color Codes | |
---|---|
Hex Code | #99d9d0 |
RGB Code | rgb(153, 217, 208) |
HSL Code | hsl(172, 46%, 73%) |
#99d9d0 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(153, 217, 208); }
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(172, 46%, 73%); }
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 #99d9d0
RGB Code | Hex Code | Preview |
---|---|---|
rgb(153, 217, 208, 10%) | #99d9d01a | |
rgb(153, 217, 208, 20%) | #99d9d033 | |
rgb(153, 217, 208, 40%) | #99d9d04C | |
rgb(153, 217, 208, 60%) | #99d9d099 | |
rgb(153, 217, 208, 80%) | #99d9d0CC | |
rgb(153, 217, 208, 100%) | #99d9d0FF |
Saturated and desaturated colors of #99d9d0
HSL Code | Preview |
---|---|
hsl(172, 10%, 73%) | |
hsl(172, 20%, 73%) | |
hsl(172, 40%, 73%) | |
hsl(172, 60%, 73%) | |
hsl(172, 80%, 73%) | |
hsl(172, 100%, 73%) |
#99d9d0 Color Usage In CSS
body { color: #99d9d0; } p { color: rgb(153, 217, 208); } header { border-bottom:1px solid #99d9d0; }