#16e6d7 Color
Color Codes | |
---|---|
Hex Code | #16e6d7 |
RGB Code | rgb(22, 230, 215) |
HSL Code | hsl(176, 83%, 49%) |
#16e6d7 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(22, 230, 215); }
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(176, 83%, 49%); }
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 #16e6d7
RGB Code | Hex Code | Preview |
---|---|---|
rgb(22, 230, 215, 10%) | #16e6d71a | |
rgb(22, 230, 215, 20%) | #16e6d733 | |
rgb(22, 230, 215, 40%) | #16e6d74C | |
rgb(22, 230, 215, 60%) | #16e6d799 | |
rgb(22, 230, 215, 80%) | #16e6d7CC | |
rgb(22, 230, 215, 100%) | #16e6d7FF |
Saturated and desaturated colors of #16e6d7
HSL Code | Preview |
---|---|
hsl(176, 10%, 49%) | |
hsl(176, 20%, 49%) | |
hsl(176, 40%, 49%) | |
hsl(176, 60%, 49%) | |
hsl(176, 80%, 49%) | |
hsl(176, 100%, 49%) |
#16e6d7 Color Usage In CSS
body { color: #16e6d7; } p { color: rgb(22, 230, 215); } header { border-bottom:1px solid #16e6d7; }