#84ca3e Color
Color Codes | |
---|---|
Hex Code | #84ca3e |
RGB Code | rgb(132, 202, 62) |
HSL Code | hsl(90, 57%, 52%) |
#84ca3e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(132, 202, 62); }
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(90, 57%, 52%); }
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 #84ca3e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(132, 202, 62, 10%) | #84ca3e1a | |
rgb(132, 202, 62, 20%) | #84ca3e33 | |
rgb(132, 202, 62, 40%) | #84ca3e4C | |
rgb(132, 202, 62, 60%) | #84ca3e99 | |
rgb(132, 202, 62, 80%) | #84ca3eCC | |
rgb(132, 202, 62, 100%) | #84ca3eFF |
Saturated and desaturated colors of #84ca3e
HSL Code | Preview |
---|---|
hsl(90, 10%, 52%) | |
hsl(90, 20%, 52%) | |
hsl(90, 40%, 52%) | |
hsl(90, 60%, 52%) | |
hsl(90, 80%, 52%) | |
hsl(90, 100%, 52%) |
#84ca3e Color Usage In CSS
body { color: #84ca3e; } p { color: rgb(132, 202, 62); } header { border-bottom:1px solid #84ca3e; }