#71ec34 Color
Color Codes | |
---|---|
Hex Code | #71ec34 |
RGB Code | rgb(113, 236, 52) |
HSL Code | hsl(100, 83%, 56%) |
#71ec34 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(113, 236, 52); }
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(100, 83%, 56%); }
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 #71ec34
RGB Code | Hex Code | Preview |
---|---|---|
rgb(113, 236, 52, 10%) | #71ec341a | |
rgb(113, 236, 52, 20%) | #71ec3433 | |
rgb(113, 236, 52, 40%) | #71ec344C | |
rgb(113, 236, 52, 60%) | #71ec3499 | |
rgb(113, 236, 52, 80%) | #71ec34CC | |
rgb(113, 236, 52, 100%) | #71ec34FF |
Saturated and desaturated colors of #71ec34
HSL Code | Preview |
---|---|
hsl(100, 10%, 56%) | |
hsl(100, 20%, 56%) | |
hsl(100, 40%, 56%) | |
hsl(100, 60%, 56%) | |
hsl(100, 80%, 56%) | |
hsl(100, 100%, 56%) |
#71ec34 Color Usage In CSS
body { color: #71ec34; } p { color: rgb(113, 236, 52); } header { border-bottom:1px solid #71ec34; }