#47c27e Color
Color Codes | |
---|---|
Hex Code | #47c27e |
RGB Code | rgb(71, 194, 126) |
HSL Code | hsl(147, 50%, 52%) |
#47c27e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(71, 194, 126); }
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(147, 50%, 52%); }
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 #47c27e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(71, 194, 126, 10%) | #47c27e1a | |
rgb(71, 194, 126, 20%) | #47c27e33 | |
rgb(71, 194, 126, 40%) | #47c27e4C | |
rgb(71, 194, 126, 60%) | #47c27e99 | |
rgb(71, 194, 126, 80%) | #47c27eCC | |
rgb(71, 194, 126, 100%) | #47c27eFF |
Saturated and desaturated colors of #47c27e
HSL Code | Preview |
---|---|
hsl(147, 10%, 52%) | |
hsl(147, 20%, 52%) | |
hsl(147, 40%, 52%) | |
hsl(147, 60%, 52%) | |
hsl(147, 80%, 52%) | |
hsl(147, 100%, 52%) |
#47c27e Color Usage In CSS
body { color: #47c27e; } p { color: rgb(71, 194, 126); } header { border-bottom:1px solid #47c27e; }