#aee73a Color
Color Codes | |
---|---|
Hex Code | #aee73a |
RGB Code | rgb(174, 231, 58) |
HSL Code | hsl(80, 78%, 57%) |
#aee73a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(174, 231, 58); }
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, 78%, 57%); }
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 #aee73a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(174, 231, 58, 10%) | #aee73a1a | |
rgb(174, 231, 58, 20%) | #aee73a33 | |
rgb(174, 231, 58, 40%) | #aee73a4C | |
rgb(174, 231, 58, 60%) | #aee73a99 | |
rgb(174, 231, 58, 80%) | #aee73aCC | |
rgb(174, 231, 58, 100%) | #aee73aFF |
Saturated and desaturated colors of #aee73a
HSL Code | Preview |
---|---|
hsl(80, 10%, 57%) | |
hsl(80, 20%, 57%) | |
hsl(80, 40%, 57%) | |
hsl(80, 60%, 57%) | |
hsl(80, 80%, 57%) | |
hsl(80, 100%, 57%) |
#aee73a Color Usage In CSS
body { color: #aee73a; } p { color: rgb(174, 231, 58); } header { border-bottom:1px solid #aee73a; }