#aa3534 Color
Color Codes | |
---|---|
Hex Code | #aa3534 |
RGB Code | rgb(170, 53, 52) |
HSL Code | hsl(1, 53%, 44%) |
#aa3534 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(170, 53, 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(1, 53%, 44%); }
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 #aa3534
RGB Code | Hex Code | Preview |
---|---|---|
rgb(170, 53, 52, 10%) | #aa35341a | |
rgb(170, 53, 52, 20%) | #aa353433 | |
rgb(170, 53, 52, 40%) | #aa35344C | |
rgb(170, 53, 52, 60%) | #aa353499 | |
rgb(170, 53, 52, 80%) | #aa3534CC | |
rgb(170, 53, 52, 100%) | #aa3534FF |
Saturated and desaturated colors of #aa3534
HSL Code | Preview |
---|---|
hsl(1, 10%, 44%) | |
hsl(1, 20%, 44%) | |
hsl(1, 40%, 44%) | |
hsl(1, 60%, 44%) | |
hsl(1, 80%, 44%) | |
hsl(1, 100%, 44%) |
#aa3534 Color Usage In CSS
body { color: #aa3534; } p { color: rgb(170, 53, 52); } header { border-bottom:1px solid #aa3534; }