#aac252 Color
Color Codes | |
---|---|
Hex Code | #aac252 |
RGB Code | rgb(170, 194, 82) |
HSL Code | hsl(73, 48%, 54%) |
#aac252 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(170, 194, 82); }
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(73, 48%, 54%); }
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 #aac252
RGB Code | Hex Code | Preview |
---|---|---|
rgb(170, 194, 82, 10%) | #aac2521a | |
rgb(170, 194, 82, 20%) | #aac25233 | |
rgb(170, 194, 82, 40%) | #aac2524C | |
rgb(170, 194, 82, 60%) | #aac25299 | |
rgb(170, 194, 82, 80%) | #aac252CC | |
rgb(170, 194, 82, 100%) | #aac252FF |
Saturated and desaturated colors of #aac252
HSL Code | Preview |
---|---|
hsl(73, 10%, 54%) | |
hsl(73, 20%, 54%) | |
hsl(73, 40%, 54%) | |
hsl(73, 60%, 54%) | |
hsl(73, 80%, 54%) | |
hsl(73, 100%, 54%) |
#aac252 Color Usage In CSS
body { color: #aac252; } p { color: rgb(170, 194, 82); } header { border-bottom:1px solid #aac252; }