#aae918 Color
Color Codes | |
---|---|
Hex Code | #aae918 |
RGB Code | rgb(170, 233, 24) |
HSL Code | hsl(78, 83%, 50%) |
#aae918 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(170, 233, 24); }
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(78, 83%, 50%); }
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 #aae918
RGB Code | Hex Code | Preview |
---|---|---|
rgb(170, 233, 24, 10%) | #aae9181a | |
rgb(170, 233, 24, 20%) | #aae91833 | |
rgb(170, 233, 24, 40%) | #aae9184C | |
rgb(170, 233, 24, 60%) | #aae91899 | |
rgb(170, 233, 24, 80%) | #aae918CC | |
rgb(170, 233, 24, 100%) | #aae918FF |
Saturated and desaturated colors of #aae918
HSL Code | Preview |
---|---|
hsl(78, 10%, 50%) | |
hsl(78, 20%, 50%) | |
hsl(78, 40%, 50%) | |
hsl(78, 60%, 50%) | |
hsl(78, 80%, 50%) | |
hsl(78, 100%, 50%) |
#aae918 Color Usage In CSS
body { color: #aae918; } p { color: rgb(170, 233, 24); } header { border-bottom:1px solid #aae918; }