#aed167 Color
Color Codes | |
---|---|
Hex Code | #aed167 |
RGB Code | rgb(174, 209, 103) |
HSL Code | hsl(80, 54%, 61%) |
#aed167 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(174, 209, 103); }
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(80, 54%, 61%); }
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 #aed167
RGB Code | Hex Code | Preview |
---|---|---|
rgb(174, 209, 103, 10%) | #aed1671a | |
rgb(174, 209, 103, 20%) | #aed16733 | |
rgb(174, 209, 103, 40%) | #aed1674C | |
rgb(174, 209, 103, 60%) | #aed16799 | |
rgb(174, 209, 103, 80%) | #aed167CC | |
rgb(174, 209, 103, 100%) | #aed167FF |
Saturated and desaturated colors of #aed167
HSL Code | Preview |
---|---|
hsl(80, 10%, 61%) | |
hsl(80, 20%, 61%) | |
hsl(80, 40%, 61%) | |
hsl(80, 60%, 61%) | |
hsl(80, 80%, 61%) | |
hsl(80, 100%, 61%) |
#aed167 Color Usage In CSS
body { color: #aed167; } p { color: rgb(174, 209, 103); } header { border-bottom:1px solid #aed167; }