#a35237 Color
Color Codes | |
---|---|
Hex Code | #a35237 |
RGB Code | rgb(163, 82, 55) |
HSL Code | hsl(15, 50%, 43%) |
#a35237 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(163, 82, 55); }
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(15, 50%, 43%); }
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 #a35237
RGB Code | Hex Code | Preview |
---|---|---|
rgb(163, 82, 55, 10%) | #a352371a | |
rgb(163, 82, 55, 20%) | #a3523733 | |
rgb(163, 82, 55, 40%) | #a352374C | |
rgb(163, 82, 55, 60%) | #a3523799 | |
rgb(163, 82, 55, 80%) | #a35237CC | |
rgb(163, 82, 55, 100%) | #a35237FF |
Saturated and desaturated colors of #a35237
HSL Code | Preview |
---|---|
hsl(15, 10%, 43%) | |
hsl(15, 20%, 43%) | |
hsl(15, 40%, 43%) | |
hsl(15, 60%, 43%) | |
hsl(15, 80%, 43%) | |
hsl(15, 100%, 43%) |
#a35237 Color Usage In CSS
body { color: #a35237; } p { color: rgb(163, 82, 55); } header { border-bottom:1px solid #a35237; }