#84e7a2 Color
Color Codes | |
---|---|
Hex Code | #84e7a2 |
RGB Code | rgb(132, 231, 162) |
HSL Code | hsl(138, 67%, 71%) |
#84e7a2 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(132, 231, 162); }
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(138, 67%, 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 #84e7a2
RGB Code | Hex Code | Preview |
---|---|---|
rgb(132, 231, 162, 10%) | #84e7a21a | |
rgb(132, 231, 162, 20%) | #84e7a233 | |
rgb(132, 231, 162, 40%) | #84e7a24C | |
rgb(132, 231, 162, 60%) | #84e7a299 | |
rgb(132, 231, 162, 80%) | #84e7a2CC | |
rgb(132, 231, 162, 100%) | #84e7a2FF |
Saturated and desaturated colors of #84e7a2
HSL Code | Preview |
---|---|
hsl(138, 10%, 71%) | |
hsl(138, 20%, 71%) | |
hsl(138, 40%, 71%) | |
hsl(138, 60%, 71%) | |
hsl(138, 80%, 71%) | |
hsl(138, 100%, 71%) |
#84e7a2 Color Usage In CSS
body { color: #84e7a2; } p { color: rgb(132, 231, 162); } header { border-bottom:1px solid #84e7a2; }