#a4333b Color
Color Codes | |
---|---|
Hex Code | #a4333b |
RGB Code | rgb(164, 51, 59) |
HSL Code | hsl(356, 53%, 42%) |
#a4333b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(164, 51, 59); }
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(356, 53%, 42%); }
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 #a4333b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(164, 51, 59, 10%) | #a4333b1a | |
rgb(164, 51, 59, 20%) | #a4333b33 | |
rgb(164, 51, 59, 40%) | #a4333b4C | |
rgb(164, 51, 59, 60%) | #a4333b99 | |
rgb(164, 51, 59, 80%) | #a4333bCC | |
rgb(164, 51, 59, 100%) | #a4333bFF |
Saturated and desaturated colors of #a4333b
HSL Code | Preview |
---|---|
hsl(356, 10%, 42%) | |
hsl(356, 20%, 42%) | |
hsl(356, 40%, 42%) | |
hsl(356, 60%, 42%) | |
hsl(356, 80%, 42%) | |
hsl(356, 100%, 42%) |
#a4333b Color Usage In CSS
body { color: #a4333b; } p { color: rgb(164, 51, 59); } header { border-bottom:1px solid #a4333b; }