#71c380 Color
Color Codes | |
---|---|
Hex Code | #71c380 |
RGB Code | rgb(113, 195, 128) |
HSL Code | hsl(131, 41%, 60%) |
#71c380 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(113, 195, 128); }
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(131, 41%, 60%); }
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 #71c380
RGB Code | Hex Code | Preview |
---|---|---|
rgb(113, 195, 128, 10%) | #71c3801a | |
rgb(113, 195, 128, 20%) | #71c38033 | |
rgb(113, 195, 128, 40%) | #71c3804C | |
rgb(113, 195, 128, 60%) | #71c38099 | |
rgb(113, 195, 128, 80%) | #71c380CC | |
rgb(113, 195, 128, 100%) | #71c380FF |
Saturated and desaturated colors of #71c380
HSL Code | Preview |
---|---|
hsl(131, 10%, 60%) | |
hsl(131, 20%, 60%) | |
hsl(131, 40%, 60%) | |
hsl(131, 60%, 60%) | |
hsl(131, 80%, 60%) | |
hsl(131, 100%, 60%) |
#71c380 Color Usage In CSS
body { color: #71c380; } p { color: rgb(113, 195, 128); } header { border-bottom:1px solid #71c380; }