#aed692 Color
Color Codes | |
---|---|
Hex Code | #aed692 |
RGB Code | rgb(174, 214, 146) |
HSL Code | hsl(95, 45%, 71%) |
#aed692 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(174, 214, 146); }
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(95, 45%, 71%); }
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 #aed692
RGB Code | Hex Code | Preview |
---|---|---|
rgb(174, 214, 146, 10%) | #aed6921a | |
rgb(174, 214, 146, 20%) | #aed69233 | |
rgb(174, 214, 146, 40%) | #aed6924C | |
rgb(174, 214, 146, 60%) | #aed69299 | |
rgb(174, 214, 146, 80%) | #aed692CC | |
rgb(174, 214, 146, 100%) | #aed692FF |
Saturated and desaturated colors of #aed692
HSL Code | Preview |
---|---|
hsl(95, 10%, 71%) | |
hsl(95, 20%, 71%) | |
hsl(95, 40%, 71%) | |
hsl(95, 60%, 71%) | |
hsl(95, 80%, 71%) | |
hsl(95, 100%, 71%) |
#aed692 Color Usage In CSS
body { color: #aed692; } p { color: rgb(174, 214, 146); } header { border-bottom:1px solid #aed692; }