#a96175 Color
Color Codes | |
---|---|
Hex Code | #a96175 |
RGB Code | rgb(169, 97, 117) |
HSL Code | hsl(343, 30%, 52%) |
#a96175 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(169, 97, 117); }
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(343, 30%, 52%); }
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 #a96175
RGB Code | Hex Code | Preview |
---|---|---|
rgb(169, 97, 117, 10%) | #a961751a | |
rgb(169, 97, 117, 20%) | #a9617533 | |
rgb(169, 97, 117, 40%) | #a961754C | |
rgb(169, 97, 117, 60%) | #a9617599 | |
rgb(169, 97, 117, 80%) | #a96175CC | |
rgb(169, 97, 117, 100%) | #a96175FF |
Saturated and desaturated colors of #a96175
HSL Code | Preview |
---|---|
hsl(343, 10%, 52%) | |
hsl(343, 20%, 52%) | |
hsl(343, 40%, 52%) | |
hsl(343, 60%, 52%) | |
hsl(343, 80%, 52%) | |
hsl(343, 100%, 52%) |
#a96175 Color Usage In CSS
body { color: #a96175; } p { color: rgb(169, 97, 117); } header { border-bottom:1px solid #a96175; }