#84f26d Color
Color Codes | |
---|---|
Hex Code | #84f26d |
RGB Code | rgb(132, 242, 109) |
HSL Code | hsl(110, 84%, 69%) |
#84f26d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(132, 242, 109); }
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(110, 84%, 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 #84f26d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(132, 242, 109, 10%) | #84f26d1a | |
rgb(132, 242, 109, 20%) | #84f26d33 | |
rgb(132, 242, 109, 40%) | #84f26d4C | |
rgb(132, 242, 109, 60%) | #84f26d99 | |
rgb(132, 242, 109, 80%) | #84f26dCC | |
rgb(132, 242, 109, 100%) | #84f26dFF |
Saturated and desaturated colors of #84f26d
HSL Code | Preview |
---|---|
hsl(110, 10%, 69%) | |
hsl(110, 20%, 69%) | |
hsl(110, 40%, 69%) | |
hsl(110, 60%, 69%) | |
hsl(110, 80%, 69%) | |
hsl(110, 100%, 69%) |
#84f26d Color Usage In CSS
body { color: #84f26d; } p { color: rgb(132, 242, 109); } header { border-bottom:1px solid #84f26d; }