#84f522 Color
Color Codes | |
---|---|
Hex Code | #84f522 |
RGB Code | rgb(132, 245, 34) |
HSL Code | hsl(92, 91%, 55%) |
#84f522 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(132, 245, 34); }
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(92, 91%, 55%); }
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 #84f522
RGB Code | Hex Code | Preview |
---|---|---|
rgb(132, 245, 34, 10%) | #84f5221a | |
rgb(132, 245, 34, 20%) | #84f52233 | |
rgb(132, 245, 34, 40%) | #84f5224C | |
rgb(132, 245, 34, 60%) | #84f52299 | |
rgb(132, 245, 34, 80%) | #84f522CC | |
rgb(132, 245, 34, 100%) | #84f522FF |
Saturated and desaturated colors of #84f522
HSL Code | Preview |
---|---|
hsl(92, 10%, 55%) | |
hsl(92, 20%, 55%) | |
hsl(92, 40%, 55%) | |
hsl(92, 60%, 55%) | |
hsl(92, 80%, 55%) | |
hsl(92, 100%, 55%) |
#84f522 Color Usage In CSS
body { color: #84f522; } p { color: rgb(132, 245, 34); } header { border-bottom:1px solid #84f522; }