#a75551 Color
Color Codes | |
---|---|
Hex Code | #a75551 |
RGB Code | rgb(167, 85, 81) |
HSL Code | hsl(3, 35%, 49%) |
#a75551 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(167, 85, 81); }
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(3, 35%, 49%); }
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 #a75551
RGB Code | Hex Code | Preview |
---|---|---|
rgb(167, 85, 81, 10%) | #a755511a | |
rgb(167, 85, 81, 20%) | #a7555133 | |
rgb(167, 85, 81, 40%) | #a755514C | |
rgb(167, 85, 81, 60%) | #a7555199 | |
rgb(167, 85, 81, 80%) | #a75551CC | |
rgb(167, 85, 81, 100%) | #a75551FF |
Saturated and desaturated colors of #a75551
HSL Code | Preview |
---|---|
hsl(3, 10%, 49%) | |
hsl(3, 20%, 49%) | |
hsl(3, 40%, 49%) | |
hsl(3, 60%, 49%) | |
hsl(3, 80%, 49%) | |
hsl(3, 100%, 49%) |
#a75551 Color Usage In CSS
body { color: #a75551; } p { color: rgb(167, 85, 81); } header { border-bottom:1px solid #a75551; }