#ad7073 Color
Color Codes | |
---|---|
Hex Code | #ad7073 |
RGB Code | rgb(173, 112, 115) |
HSL Code | hsl(357, 27%, 56%) |
#ad7073 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(173, 112, 115); }
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(357, 27%, 56%); }
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 #ad7073
RGB Code | Hex Code | Preview |
---|---|---|
rgb(173, 112, 115, 10%) | #ad70731a | |
rgb(173, 112, 115, 20%) | #ad707333 | |
rgb(173, 112, 115, 40%) | #ad70734C | |
rgb(173, 112, 115, 60%) | #ad707399 | |
rgb(173, 112, 115, 80%) | #ad7073CC | |
rgb(173, 112, 115, 100%) | #ad7073FF |
Saturated and desaturated colors of #ad7073
HSL Code | Preview |
---|---|
hsl(357, 10%, 56%) | |
hsl(357, 20%, 56%) | |
hsl(357, 40%, 56%) | |
hsl(357, 60%, 56%) | |
hsl(357, 80%, 56%) | |
hsl(357, 100%, 56%) |
#ad7073 Color Usage In CSS
body { color: #ad7073; } p { color: rgb(173, 112, 115); } header { border-bottom:1px solid #ad7073; }