#84f071 Color
Color Codes | |
---|---|
Hex Code | #84f071 |
RGB Code | rgb(132, 240, 113) |
HSL Code | hsl(111, 81%, 69%) |
#84f071 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(132, 240, 113); }
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(111, 81%, 69%); }
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 #84f071
RGB Code | Hex Code | Preview |
---|---|---|
rgb(132, 240, 113, 10%) | #84f0711a | |
rgb(132, 240, 113, 20%) | #84f07133 | |
rgb(132, 240, 113, 40%) | #84f0714C | |
rgb(132, 240, 113, 60%) | #84f07199 | |
rgb(132, 240, 113, 80%) | #84f071CC | |
rgb(132, 240, 113, 100%) | #84f071FF |
Saturated and desaturated colors of #84f071
HSL Code | Preview |
---|---|
hsl(111, 10%, 69%) | |
hsl(111, 20%, 69%) | |
hsl(111, 40%, 69%) | |
hsl(111, 60%, 69%) | |
hsl(111, 80%, 69%) | |
hsl(111, 100%, 69%) |
#84f071 Color Usage In CSS
body { color: #84f071; } p { color: rgb(132, 240, 113); } header { border-bottom:1px solid #84f071; }