#47b392 Color
Color Codes | |
---|---|
Hex Code | #47b392 |
RGB Code | rgb(71, 179, 146) |
HSL Code | hsl(162, 43%, 49%) |
#47b392 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(71, 179, 146); }
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(162, 43%, 49%); }
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 #47b392
RGB Code | Hex Code | Preview |
---|---|---|
rgb(71, 179, 146, 10%) | #47b3921a | |
rgb(71, 179, 146, 20%) | #47b39233 | |
rgb(71, 179, 146, 40%) | #47b3924C | |
rgb(71, 179, 146, 60%) | #47b39299 | |
rgb(71, 179, 146, 80%) | #47b392CC | |
rgb(71, 179, 146, 100%) | #47b392FF |
Saturated and desaturated colors of #47b392
HSL Code | Preview |
---|---|
hsl(162, 10%, 49%) | |
hsl(162, 20%, 49%) | |
hsl(162, 40%, 49%) | |
hsl(162, 60%, 49%) | |
hsl(162, 80%, 49%) | |
hsl(162, 100%, 49%) |
#47b392 Color Usage In CSS
body { color: #47b392; } p { color: rgb(71, 179, 146); } header { border-bottom:1px solid #47b392; }