#887287 Color
Color Codes | |
---|---|
Hex Code | #887287 |
RGB Code | rgb(136, 114, 135) |
HSL Code | hsl(303, 9%, 49%) |
#887287 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(136, 114, 135); }
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(303, 9%, 49%); }
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 #887287
RGB Code | Hex Code | Preview |
---|---|---|
rgb(136, 114, 135, 10%) | #8872871a | |
rgb(136, 114, 135, 20%) | #88728733 | |
rgb(136, 114, 135, 40%) | #8872874C | |
rgb(136, 114, 135, 60%) | #88728799 | |
rgb(136, 114, 135, 80%) | #887287CC | |
rgb(136, 114, 135, 100%) | #887287FF |
Saturated and desaturated colors of #887287
HSL Code | Preview |
---|---|
hsl(303, 10%, 49%) | |
hsl(303, 20%, 49%) | |
hsl(303, 40%, 49%) | |
hsl(303, 60%, 49%) | |
hsl(303, 80%, 49%) | |
hsl(303, 100%, 49%) |
#887287 Color Usage In CSS
body { color: #887287; } p { color: rgb(136, 114, 135); } header { border-bottom:1px solid #887287; }