#85c3b8 Color
Color Codes | |
---|---|
Hex Code | #85c3b8 |
RGB Code | rgb(133, 195, 184) |
HSL Code | hsl(169, 34%, 64%) |
#85c3b8 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(133, 195, 184); }
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(169, 34%, 64%); }
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 #85c3b8
RGB Code | Hex Code | Preview |
---|---|---|
rgb(133, 195, 184, 10%) | #85c3b81a | |
rgb(133, 195, 184, 20%) | #85c3b833 | |
rgb(133, 195, 184, 40%) | #85c3b84C | |
rgb(133, 195, 184, 60%) | #85c3b899 | |
rgb(133, 195, 184, 80%) | #85c3b8CC | |
rgb(133, 195, 184, 100%) | #85c3b8FF |
Saturated and desaturated colors of #85c3b8
HSL Code | Preview |
---|---|
hsl(169, 10%, 64%) | |
hsl(169, 20%, 64%) | |
hsl(169, 40%, 64%) | |
hsl(169, 60%, 64%) | |
hsl(169, 80%, 64%) | |
hsl(169, 100%, 64%) |
#85c3b8 Color Usage In CSS
body { color: #85c3b8; } p { color: rgb(133, 195, 184); } header { border-bottom:1px solid #85c3b8; }