#7df47f Color
Color Codes | |
---|---|
Hex Code | #7df47f |
RGB Code | rgb(125, 244, 127) |
HSL Code | hsl(121, 84%, 72%) |
#7df47f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(125, 244, 127); }
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, 84%, 72%); }
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 #7df47f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(125, 244, 127, 10%) | #7df47f1a | |
rgb(125, 244, 127, 20%) | #7df47f33 | |
rgb(125, 244, 127, 40%) | #7df47f4C | |
rgb(125, 244, 127, 60%) | #7df47f99 | |
rgb(125, 244, 127, 80%) | #7df47fCC | |
rgb(125, 244, 127, 100%) | #7df47fFF |
Saturated and desaturated colors of #7df47f
HSL Code | Preview |
---|---|
hsl(121, 10%, 72%) | |
hsl(121, 20%, 72%) | |
hsl(121, 40%, 72%) | |
hsl(121, 60%, 72%) | |
hsl(121, 80%, 72%) | |
hsl(121, 100%, 72%) |
#7df47f Color Usage In CSS
body { color: #7df47f; } p { color: rgb(125, 244, 127); } header { border-bottom:1px solid #7df47f; }