#71ea74 Color
Color Codes | |
---|---|
Hex Code | #71ea74 |
RGB Code | rgb(113, 234, 116) |
HSL Code | hsl(121, 74%, 68%) |
#71ea74 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(113, 234, 116); }
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(121, 74%, 68%); }
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 #71ea74
RGB Code | Hex Code | Preview |
---|---|---|
rgb(113, 234, 116, 10%) | #71ea741a | |
rgb(113, 234, 116, 20%) | #71ea7433 | |
rgb(113, 234, 116, 40%) | #71ea744C | |
rgb(113, 234, 116, 60%) | #71ea7499 | |
rgb(113, 234, 116, 80%) | #71ea74CC | |
rgb(113, 234, 116, 100%) | #71ea74FF |
Saturated and desaturated colors of #71ea74
HSL Code | Preview |
---|---|
hsl(121, 10%, 68%) | |
hsl(121, 20%, 68%) | |
hsl(121, 40%, 68%) | |
hsl(121, 60%, 68%) | |
hsl(121, 80%, 68%) | |
hsl(121, 100%, 68%) |
#71ea74 Color Usage In CSS
body { color: #71ea74; } p { color: rgb(113, 234, 116); } header { border-bottom:1px solid #71ea74; }