#71f9d6 Color
Color Codes | |
---|---|
Hex Code | #71f9d6 |
RGB Code | rgb(113, 249, 214) |
HSL Code | hsl(165, 92%, 71%) |
#71f9d6 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(113, 249, 214); }
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(165, 92%, 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 #71f9d6
RGB Code | Hex Code | Preview |
---|---|---|
rgb(113, 249, 214, 10%) | #71f9d61a | |
rgb(113, 249, 214, 20%) | #71f9d633 | |
rgb(113, 249, 214, 40%) | #71f9d64C | |
rgb(113, 249, 214, 60%) | #71f9d699 | |
rgb(113, 249, 214, 80%) | #71f9d6CC | |
rgb(113, 249, 214, 100%) | #71f9d6FF |
Saturated and desaturated colors of #71f9d6
HSL Code | Preview |
---|---|
hsl(165, 10%, 71%) | |
hsl(165, 20%, 71%) | |
hsl(165, 40%, 71%) | |
hsl(165, 60%, 71%) | |
hsl(165, 80%, 71%) | |
hsl(165, 100%, 71%) |
#71f9d6 Color Usage In CSS
body { color: #71f9d6; } p { color: rgb(113, 249, 214); } header { border-bottom:1px solid #71f9d6; }