#55e9b3 Color
Color Codes | |
---|---|
Hex Code | #55e9b3 |
RGB Code | rgb(85, 233, 179) |
HSL Code | hsl(158, 77%, 62%) |
#55e9b3 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(85, 233, 179); }
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(158, 77%, 62%); }
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 #55e9b3
RGB Code | Hex Code | Preview |
---|---|---|
rgb(85, 233, 179, 10%) | #55e9b31a | |
rgb(85, 233, 179, 20%) | #55e9b333 | |
rgb(85, 233, 179, 40%) | #55e9b34C | |
rgb(85, 233, 179, 60%) | #55e9b399 | |
rgb(85, 233, 179, 80%) | #55e9b3CC | |
rgb(85, 233, 179, 100%) | #55e9b3FF |
Saturated and desaturated colors of #55e9b3
HSL Code | Preview |
---|---|
hsl(158, 10%, 62%) | |
hsl(158, 20%, 62%) | |
hsl(158, 40%, 62%) | |
hsl(158, 60%, 62%) | |
hsl(158, 80%, 62%) | |
hsl(158, 100%, 62%) |
#55e9b3 Color Usage In CSS
body { color: #55e9b3; } p { color: rgb(85, 233, 179); } header { border-bottom:1px solid #55e9b3; }