#76fca6 Color
Color Codes | |
---|---|
Hex Code | #76fca6 |
RGB Code | rgb(118, 252, 166) |
HSL Code | hsl(141, 96%, 73%) |
#76fca6 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(118, 252, 166); }
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, 96%, 73%); }
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 #76fca6
RGB Code | Hex Code | Preview |
---|---|---|
rgb(118, 252, 166, 10%) | #76fca61a | |
rgb(118, 252, 166, 20%) | #76fca633 | |
rgb(118, 252, 166, 40%) | #76fca64C | |
rgb(118, 252, 166, 60%) | #76fca699 | |
rgb(118, 252, 166, 80%) | #76fca6CC | |
rgb(118, 252, 166, 100%) | #76fca6FF |
Saturated and desaturated colors of #76fca6
HSL Code | Preview |
---|---|
hsl(141, 10%, 73%) | |
hsl(141, 20%, 73%) | |
hsl(141, 40%, 73%) | |
hsl(141, 60%, 73%) | |
hsl(141, 80%, 73%) | |
hsl(141, 100%, 73%) |
#76fca6 Color Usage In CSS
body { color: #76fca6; } p { color: rgb(118, 252, 166); } header { border-bottom:1px solid #76fca6; }