#71fa76 Color
Color Codes | |
---|---|
Hex Code | #71fa76 |
RGB Code | rgb(113, 250, 118) |
HSL Code | hsl(122, 93%, 71%) |
#71fa76 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(113, 250, 118); }
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(122, 93%, 71%); }
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 #71fa76
RGB Code | Hex Code | Preview |
---|---|---|
rgb(113, 250, 118, 10%) | #71fa761a | |
rgb(113, 250, 118, 20%) | #71fa7633 | |
rgb(113, 250, 118, 40%) | #71fa764C | |
rgb(113, 250, 118, 60%) | #71fa7699 | |
rgb(113, 250, 118, 80%) | #71fa76CC | |
rgb(113, 250, 118, 100%) | #71fa76FF |
Saturated and desaturated colors of #71fa76
HSL Code | Preview |
---|---|
hsl(122, 10%, 71%) | |
hsl(122, 20%, 71%) | |
hsl(122, 40%, 71%) | |
hsl(122, 60%, 71%) | |
hsl(122, 80%, 71%) | |
hsl(122, 100%, 71%) |
#71fa76 Color Usage In CSS
body { color: #71fa76; } p { color: rgb(113, 250, 118); } header { border-bottom:1px solid #71fa76; }