#aa5439 Color
Color Codes | |
---|---|
Hex Code | #aa5439 |
RGB Code | rgb(170, 84, 57) |
HSL Code | hsl(14, 50%, 45%) |
#aa5439 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(170, 84, 57); }
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(14, 50%, 45%); }
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 #aa5439
RGB Code | Hex Code | Preview |
---|---|---|
rgb(170, 84, 57, 10%) | #aa54391a | |
rgb(170, 84, 57, 20%) | #aa543933 | |
rgb(170, 84, 57, 40%) | #aa54394C | |
rgb(170, 84, 57, 60%) | #aa543999 | |
rgb(170, 84, 57, 80%) | #aa5439CC | |
rgb(170, 84, 57, 100%) | #aa5439FF |
Saturated and desaturated colors of #aa5439
HSL Code | Preview |
---|---|
hsl(14, 10%, 45%) | |
hsl(14, 20%, 45%) | |
hsl(14, 40%, 45%) | |
hsl(14, 60%, 45%) | |
hsl(14, 80%, 45%) | |
hsl(14, 100%, 45%) |
#aa5439 Color Usage In CSS
body { color: #aa5439; } p { color: rgb(170, 84, 57); } header { border-bottom:1px solid #aa5439; }