#aaf134 Color
Color Codes | |
---|---|
Hex Code | #aaf134 |
RGB Code | rgb(170, 241, 52) |
HSL Code | hsl(83, 87%, 57%) |
#aaf134 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(170, 241, 52); }
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(83, 87%, 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 #aaf134
RGB Code | Hex Code | Preview |
---|---|---|
rgb(170, 241, 52, 10%) | #aaf1341a | |
rgb(170, 241, 52, 20%) | #aaf13433 | |
rgb(170, 241, 52, 40%) | #aaf1344C | |
rgb(170, 241, 52, 60%) | #aaf13499 | |
rgb(170, 241, 52, 80%) | #aaf134CC | |
rgb(170, 241, 52, 100%) | #aaf134FF |
Saturated and desaturated colors of #aaf134
HSL Code | Preview |
---|---|
hsl(83, 10%, 57%) | |
hsl(83, 20%, 57%) | |
hsl(83, 40%, 57%) | |
hsl(83, 60%, 57%) | |
hsl(83, 80%, 57%) | |
hsl(83, 100%, 57%) |
#aaf134 Color Usage In CSS
body { color: #aaf134; } p { color: rgb(170, 241, 52); } header { border-bottom:1px solid #aaf134; }