#71c414 Color
Color Codes | |
---|---|
Hex Code | #71c414 |
RGB Code | rgb(113, 196, 20) |
HSL Code | hsl(88, 81%, 42%) |
#71c414 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(113, 196, 20); }
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(88, 81%, 42%); }
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 #71c414
RGB Code | Hex Code | Preview |
---|---|---|
rgb(113, 196, 20, 10%) | #71c4141a | |
rgb(113, 196, 20, 20%) | #71c41433 | |
rgb(113, 196, 20, 40%) | #71c4144C | |
rgb(113, 196, 20, 60%) | #71c41499 | |
rgb(113, 196, 20, 80%) | #71c414CC | |
rgb(113, 196, 20, 100%) | #71c414FF |
Saturated and desaturated colors of #71c414
HSL Code | Preview |
---|---|
hsl(88, 10%, 42%) | |
hsl(88, 20%, 42%) | |
hsl(88, 40%, 42%) | |
hsl(88, 60%, 42%) | |
hsl(88, 80%, 42%) | |
hsl(88, 100%, 42%) |
#71c414 Color Usage In CSS
body { color: #71c414; } p { color: rgb(113, 196, 20); } header { border-bottom:1px solid #71c414; }