#aa6442 Color
Color Codes | |
---|---|
Hex Code | #aa6442 |
RGB Code | rgb(170, 100, 66) |
HSL Code | hsl(20, 44%, 46%) |
#aa6442 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(170, 100, 66); }
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(20, 44%, 46%); }
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 #aa6442
RGB Code | Hex Code | Preview |
---|---|---|
rgb(170, 100, 66, 10%) | #aa64421a | |
rgb(170, 100, 66, 20%) | #aa644233 | |
rgb(170, 100, 66, 40%) | #aa64424C | |
rgb(170, 100, 66, 60%) | #aa644299 | |
rgb(170, 100, 66, 80%) | #aa6442CC | |
rgb(170, 100, 66, 100%) | #aa6442FF |
Saturated and desaturated colors of #aa6442
HSL Code | Preview |
---|---|
hsl(20, 10%, 46%) | |
hsl(20, 20%, 46%) | |
hsl(20, 40%, 46%) | |
hsl(20, 60%, 46%) | |
hsl(20, 80%, 46%) | |
hsl(20, 100%, 46%) |
#aa6442 Color Usage In CSS
body { color: #aa6442; } p { color: rgb(170, 100, 66); } header { border-bottom:1px solid #aa6442; }