#aed38a Color
Color Codes | |
---|---|
Hex Code | #aed38a |
RGB Code | rgb(174, 211, 138) |
HSL Code | hsl(90, 45%, 68%) |
#aed38a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(174, 211, 138); }
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(90, 45%, 68%); }
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 #aed38a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(174, 211, 138, 10%) | #aed38a1a | |
rgb(174, 211, 138, 20%) | #aed38a33 | |
rgb(174, 211, 138, 40%) | #aed38a4C | |
rgb(174, 211, 138, 60%) | #aed38a99 | |
rgb(174, 211, 138, 80%) | #aed38aCC | |
rgb(174, 211, 138, 100%) | #aed38aFF |
Saturated and desaturated colors of #aed38a
HSL Code | Preview |
---|---|
hsl(90, 10%, 68%) | |
hsl(90, 20%, 68%) | |
hsl(90, 40%, 68%) | |
hsl(90, 60%, 68%) | |
hsl(90, 80%, 68%) | |
hsl(90, 100%, 68%) |
#aed38a Color Usage In CSS
body { color: #aed38a; } p { color: rgb(174, 211, 138); } header { border-bottom:1px solid #aed38a; }