#5cf7aa Color
Color Codes | |
---|---|
Hex Code | #5cf7aa |
RGB Code | rgb(92, 247, 170) |
HSL Code | hsl(150, 91%, 66%) |
#5cf7aa Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(92, 247, 170); }
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(150, 91%, 66%); }
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 #5cf7aa
RGB Code | Hex Code | Preview |
---|---|---|
rgb(92, 247, 170, 10%) | #5cf7aa1a | |
rgb(92, 247, 170, 20%) | #5cf7aa33 | |
rgb(92, 247, 170, 40%) | #5cf7aa4C | |
rgb(92, 247, 170, 60%) | #5cf7aa99 | |
rgb(92, 247, 170, 80%) | #5cf7aaCC | |
rgb(92, 247, 170, 100%) | #5cf7aaFF |
Saturated and desaturated colors of #5cf7aa
HSL Code | Preview |
---|---|
hsl(150, 10%, 66%) | |
hsl(150, 20%, 66%) | |
hsl(150, 40%, 66%) | |
hsl(150, 60%, 66%) | |
hsl(150, 80%, 66%) | |
hsl(150, 100%, 66%) |
#5cf7aa Color Usage In CSS
body { color: #5cf7aa; } p { color: rgb(92, 247, 170); } header { border-bottom:1px solid #5cf7aa; }