#96f24c Color
Color Codes | |
---|---|
Hex Code | #96f24c |
RGB Code | rgb(150, 242, 76) |
HSL Code | hsl(93, 86%, 62%) |
#96f24c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(150, 242, 76); }
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(93, 86%, 62%); }
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 #96f24c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(150, 242, 76, 10%) | #96f24c1a | |
rgb(150, 242, 76, 20%) | #96f24c33 | |
rgb(150, 242, 76, 40%) | #96f24c4C | |
rgb(150, 242, 76, 60%) | #96f24c99 | |
rgb(150, 242, 76, 80%) | #96f24cCC | |
rgb(150, 242, 76, 100%) | #96f24cFF |
Saturated and desaturated colors of #96f24c
HSL Code | Preview |
---|---|
hsl(93, 10%, 62%) | |
hsl(93, 20%, 62%) | |
hsl(93, 40%, 62%) | |
hsl(93, 60%, 62%) | |
hsl(93, 80%, 62%) | |
hsl(93, 100%, 62%) |
#96f24c Color Usage In CSS
body { color: #96f24c; } p { color: rgb(150, 242, 76); } header { border-bottom:1px solid #96f24c; }