#72eb3d Color
Color Codes | |
---|---|
Hex Code | #72eb3d |
RGB Code | rgb(114, 235, 61) |
HSL Code | hsl(102, 81%, 58%) |
#72eb3d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(114, 235, 61); }
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(102, 81%, 58%); }
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 #72eb3d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(114, 235, 61, 10%) | #72eb3d1a | |
rgb(114, 235, 61, 20%) | #72eb3d33 | |
rgb(114, 235, 61, 40%) | #72eb3d4C | |
rgb(114, 235, 61, 60%) | #72eb3d99 | |
rgb(114, 235, 61, 80%) | #72eb3dCC | |
rgb(114, 235, 61, 100%) | #72eb3dFF |
Saturated and desaturated colors of #72eb3d
HSL Code | Preview |
---|---|
hsl(102, 10%, 58%) | |
hsl(102, 20%, 58%) | |
hsl(102, 40%, 58%) | |
hsl(102, 60%, 58%) | |
hsl(102, 80%, 58%) | |
hsl(102, 100%, 58%) |
#72eb3d Color Usage In CSS
body { color: #72eb3d; } p { color: rgb(114, 235, 61); } header { border-bottom:1px solid #72eb3d; }