#a9c387 Color
Color Codes | |
---|---|
Hex Code | #a9c387 |
RGB Code | rgb(169, 195, 135) |
HSL Code | hsl(86, 33%, 65%) |
#a9c387 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(169, 195, 135); }
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(86, 33%, 65%); }
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 #a9c387
RGB Code | Hex Code | Preview |
---|---|---|
rgb(169, 195, 135, 10%) | #a9c3871a | |
rgb(169, 195, 135, 20%) | #a9c38733 | |
rgb(169, 195, 135, 40%) | #a9c3874C | |
rgb(169, 195, 135, 60%) | #a9c38799 | |
rgb(169, 195, 135, 80%) | #a9c387CC | |
rgb(169, 195, 135, 100%) | #a9c387FF |
Saturated and desaturated colors of #a9c387
HSL Code | Preview |
---|---|
hsl(86, 10%, 65%) | |
hsl(86, 20%, 65%) | |
hsl(86, 40%, 65%) | |
hsl(86, 60%, 65%) | |
hsl(86, 80%, 65%) | |
hsl(86, 100%, 65%) |
#a9c387 Color Usage In CSS
body { color: #a9c387; } p { color: rgb(169, 195, 135); } header { border-bottom:1px solid #a9c387; }