#b46f57 Color
Color Codes | |
---|---|
Hex Code | #b46f57 |
RGB Code | rgb(180, 111, 87) |
HSL Code | hsl(15, 38%, 52%) |
#b46f57 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(180, 111, 87); }
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, 38%, 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 #b46f57
RGB Code | Hex Code | Preview |
---|---|---|
rgb(180, 111, 87, 10%) | #b46f571a | |
rgb(180, 111, 87, 20%) | #b46f5733 | |
rgb(180, 111, 87, 40%) | #b46f574C | |
rgb(180, 111, 87, 60%) | #b46f5799 | |
rgb(180, 111, 87, 80%) | #b46f57CC | |
rgb(180, 111, 87, 100%) | #b46f57FF |
Saturated and desaturated colors of #b46f57
HSL Code | Preview |
---|---|
hsl(15, 10%, 52%) | |
hsl(15, 20%, 52%) | |
hsl(15, 40%, 52%) | |
hsl(15, 60%, 52%) | |
hsl(15, 80%, 52%) | |
hsl(15, 100%, 52%) |
#b46f57 Color Usage In CSS
body { color: #b46f57; } p { color: rgb(180, 111, 87); } header { border-bottom:1px solid #b46f57; }