#aedb7c Color
Color Codes | |
---|---|
Hex Code | #aedb7c |
RGB Code | rgb(174, 219, 124) |
HSL Code | hsl(88, 57%, 67%) |
#aedb7c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(174, 219, 124); }
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(88, 57%, 67%); }
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 #aedb7c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(174, 219, 124, 10%) | #aedb7c1a | |
rgb(174, 219, 124, 20%) | #aedb7c33 | |
rgb(174, 219, 124, 40%) | #aedb7c4C | |
rgb(174, 219, 124, 60%) | #aedb7c99 | |
rgb(174, 219, 124, 80%) | #aedb7cCC | |
rgb(174, 219, 124, 100%) | #aedb7cFF |
Saturated and desaturated colors of #aedb7c
HSL Code | Preview |
---|---|
hsl(88, 10%, 67%) | |
hsl(88, 20%, 67%) | |
hsl(88, 40%, 67%) | |
hsl(88, 60%, 67%) | |
hsl(88, 80%, 67%) | |
hsl(88, 100%, 67%) |
#aedb7c Color Usage In CSS
body { color: #aedb7c; } p { color: rgb(174, 219, 124); } header { border-bottom:1px solid #aedb7c; }