#885e85 Color
Color Codes | |
---|---|
Hex Code | #885e85 |
RGB Code | rgb(136, 94, 133) |
HSL Code | hsl(304, 18%, 45%) |
#885e85 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(136, 94, 133); }
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(304, 18%, 45%); }
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 #885e85
RGB Code | Hex Code | Preview |
---|---|---|
rgb(136, 94, 133, 10%) | #885e851a | |
rgb(136, 94, 133, 20%) | #885e8533 | |
rgb(136, 94, 133, 40%) | #885e854C | |
rgb(136, 94, 133, 60%) | #885e8599 | |
rgb(136, 94, 133, 80%) | #885e85CC | |
rgb(136, 94, 133, 100%) | #885e85FF |
Saturated and desaturated colors of #885e85
HSL Code | Preview |
---|---|
hsl(304, 10%, 45%) | |
hsl(304, 20%, 45%) | |
hsl(304, 40%, 45%) | |
hsl(304, 60%, 45%) | |
hsl(304, 80%, 45%) | |
hsl(304, 100%, 45%) |
#885e85 Color Usage In CSS
body { color: #885e85; } p { color: rgb(136, 94, 133); } header { border-bottom:1px solid #885e85; }