#4ad537 Color
Color Codes | |
---|---|
Hex Code | #4ad537 |
RGB Code | rgb(74, 213, 55) |
HSL Code | hsl(113, 65%, 53%) |
#4ad537 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(74, 213, 55); }
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(113, 65%, 53%); }
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 #4ad537
RGB Code | Hex Code | Preview |
---|---|---|
rgb(74, 213, 55, 10%) | #4ad5371a | |
rgb(74, 213, 55, 20%) | #4ad53733 | |
rgb(74, 213, 55, 40%) | #4ad5374C | |
rgb(74, 213, 55, 60%) | #4ad53799 | |
rgb(74, 213, 55, 80%) | #4ad537CC | |
rgb(74, 213, 55, 100%) | #4ad537FF |
Saturated and desaturated colors of #4ad537
HSL Code | Preview |
---|---|
hsl(113, 10%, 53%) | |
hsl(113, 20%, 53%) | |
hsl(113, 40%, 53%) | |
hsl(113, 60%, 53%) | |
hsl(113, 80%, 53%) | |
hsl(113, 100%, 53%) |
#4ad537 Color Usage In CSS
body { color: #4ad537; } p { color: rgb(74, 213, 55); } header { border-bottom:1px solid #4ad537; }