#a4d15c Color
Color Codes | |
---|---|
Hex Code | #a4d15c |
RGB Code | rgb(164, 209, 92) |
HSL Code | hsl(83, 56%, 59%) |
#a4d15c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(164, 209, 92); }
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(83, 56%, 59%); }
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 #a4d15c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(164, 209, 92, 10%) | #a4d15c1a | |
rgb(164, 209, 92, 20%) | #a4d15c33 | |
rgb(164, 209, 92, 40%) | #a4d15c4C | |
rgb(164, 209, 92, 60%) | #a4d15c99 | |
rgb(164, 209, 92, 80%) | #a4d15cCC | |
rgb(164, 209, 92, 100%) | #a4d15cFF |
Saturated and desaturated colors of #a4d15c
HSL Code | Preview |
---|---|
hsl(83, 10%, 59%) | |
hsl(83, 20%, 59%) | |
hsl(83, 40%, 59%) | |
hsl(83, 60%, 59%) | |
hsl(83, 80%, 59%) | |
hsl(83, 100%, 59%) |
#a4d15c Color Usage In CSS
body { color: #a4d15c; } p { color: rgb(164, 209, 92); } header { border-bottom:1px solid #a4d15c; }