#71e097 Color
Color Codes | |
---|---|
Hex Code | #71e097 |
RGB Code | rgb(113, 224, 151) |
HSL Code | hsl(141, 64%, 66%) |
#71e097 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(113, 224, 151); }
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(141, 64%, 66%); }
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 #71e097
RGB Code | Hex Code | Preview |
---|---|---|
rgb(113, 224, 151, 10%) | #71e0971a | |
rgb(113, 224, 151, 20%) | #71e09733 | |
rgb(113, 224, 151, 40%) | #71e0974C | |
rgb(113, 224, 151, 60%) | #71e09799 | |
rgb(113, 224, 151, 80%) | #71e097CC | |
rgb(113, 224, 151, 100%) | #71e097FF |
Saturated and desaturated colors of #71e097
HSL Code | Preview |
---|---|
hsl(141, 10%, 66%) | |
hsl(141, 20%, 66%) | |
hsl(141, 40%, 66%) | |
hsl(141, 60%, 66%) | |
hsl(141, 80%, 66%) | |
hsl(141, 100%, 66%) |
#71e097 Color Usage In CSS
body { color: #71e097; } p { color: rgb(113, 224, 151); } header { border-bottom:1px solid #71e097; }