#aa3438 Color
Color Codes | |
---|---|
Hex Code | #aa3438 |
RGB Code | rgb(170, 52, 56) |
HSL Code | hsl(358, 53%, 44%) |
#aa3438 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(170, 52, 56); }
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(358, 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 #aa3438
RGB Code | Hex Code | Preview |
---|---|---|
rgb(170, 52, 56, 10%) | #aa34381a | |
rgb(170, 52, 56, 20%) | #aa343833 | |
rgb(170, 52, 56, 40%) | #aa34384C | |
rgb(170, 52, 56, 60%) | #aa343899 | |
rgb(170, 52, 56, 80%) | #aa3438CC | |
rgb(170, 52, 56, 100%) | #aa3438FF |
Saturated and desaturated colors of #aa3438
HSL Code | Preview |
---|---|
hsl(358, 10%, 44%) | |
hsl(358, 20%, 44%) | |
hsl(358, 40%, 44%) | |
hsl(358, 60%, 44%) | |
hsl(358, 80%, 44%) | |
hsl(358, 100%, 44%) |
#aa3438 Color Usage In CSS
body { color: #aa3438; } p { color: rgb(170, 52, 56); } header { border-bottom:1px solid #aa3438; }