#71c031 Color
Color Codes | |
---|---|
Hex Code | #71c031 |
RGB Code | rgb(113, 192, 49) |
HSL Code | hsl(93, 59%, 47%) |
#71c031 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(113, 192, 49); }
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(93, 59%, 47%); }
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 #71c031
RGB Code | Hex Code | Preview |
---|---|---|
rgb(113, 192, 49, 10%) | #71c0311a | |
rgb(113, 192, 49, 20%) | #71c03133 | |
rgb(113, 192, 49, 40%) | #71c0314C | |
rgb(113, 192, 49, 60%) | #71c03199 | |
rgb(113, 192, 49, 80%) | #71c031CC | |
rgb(113, 192, 49, 100%) | #71c031FF |
Saturated and desaturated colors of #71c031
HSL Code | Preview |
---|---|
hsl(93, 10%, 47%) | |
hsl(93, 20%, 47%) | |
hsl(93, 40%, 47%) | |
hsl(93, 60%, 47%) | |
hsl(93, 80%, 47%) | |
hsl(93, 100%, 47%) |
#71c031 Color Usage In CSS
body { color: #71c031; } p { color: rgb(113, 192, 49); } header { border-bottom:1px solid #71c031; }