#5cf247 Color
Color Codes | |
---|---|
Hex Code | #5cf247 |
RGB Code | rgb(92, 242, 71) |
HSL Code | hsl(113, 87%, 61%) |
#5cf247 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(92, 242, 71); }
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(113, 87%, 61%); }
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 #5cf247
RGB Code | Hex Code | Preview |
---|---|---|
rgb(92, 242, 71, 10%) | #5cf2471a | |
rgb(92, 242, 71, 20%) | #5cf24733 | |
rgb(92, 242, 71, 40%) | #5cf2474C | |
rgb(92, 242, 71, 60%) | #5cf24799 | |
rgb(92, 242, 71, 80%) | #5cf247CC | |
rgb(92, 242, 71, 100%) | #5cf247FF |
Saturated and desaturated colors of #5cf247
HSL Code | Preview |
---|---|
hsl(113, 10%, 61%) | |
hsl(113, 20%, 61%) | |
hsl(113, 40%, 61%) | |
hsl(113, 60%, 61%) | |
hsl(113, 80%, 61%) | |
hsl(113, 100%, 61%) |
#5cf247 Color Usage In CSS
body { color: #5cf247; } p { color: rgb(92, 242, 71); } header { border-bottom:1px solid #5cf247; }