#887742 Color
Color Codes | |
---|---|
Hex Code | #887742 |
RGB Code | rgb(136, 119, 66) |
HSL Code | hsl(45, 35%, 40%) |
#887742 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(136, 119, 66); }
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(45, 35%, 40%); }
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 #887742
RGB Code | Hex Code | Preview |
---|---|---|
rgb(136, 119, 66, 10%) | #8877421a | |
rgb(136, 119, 66, 20%) | #88774233 | |
rgb(136, 119, 66, 40%) | #8877424C | |
rgb(136, 119, 66, 60%) | #88774299 | |
rgb(136, 119, 66, 80%) | #887742CC | |
rgb(136, 119, 66, 100%) | #887742FF |
Saturated and desaturated colors of #887742
HSL Code | Preview |
---|---|
hsl(45, 10%, 40%) | |
hsl(45, 20%, 40%) | |
hsl(45, 40%, 40%) | |
hsl(45, 60%, 40%) | |
hsl(45, 80%, 40%) | |
hsl(45, 100%, 40%) |
#887742 Color Usage In CSS
body { color: #887742; } p { color: rgb(136, 119, 66); } header { border-bottom:1px solid #887742; }