#a74521 Color
Color Codes | |
---|---|
Hex Code | #a74521 |
RGB Code | rgb(167, 69, 33) |
HSL Code | hsl(16, 67%, 39%) |
#a74521 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(167, 69, 33); }
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(16, 67%, 39%); }
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 #a74521
RGB Code | Hex Code | Preview |
---|---|---|
rgb(167, 69, 33, 10%) | #a745211a | |
rgb(167, 69, 33, 20%) | #a7452133 | |
rgb(167, 69, 33, 40%) | #a745214C | |
rgb(167, 69, 33, 60%) | #a7452199 | |
rgb(167, 69, 33, 80%) | #a74521CC | |
rgb(167, 69, 33, 100%) | #a74521FF |
Saturated and desaturated colors of #a74521
HSL Code | Preview |
---|---|
hsl(16, 10%, 39%) | |
hsl(16, 20%, 39%) | |
hsl(16, 40%, 39%) | |
hsl(16, 60%, 39%) | |
hsl(16, 80%, 39%) | |
hsl(16, 100%, 39%) |
#a74521 Color Usage In CSS
body { color: #a74521; } p { color: rgb(167, 69, 33); } header { border-bottom:1px solid #a74521; }