#881099 Color
Color Codes | |
---|---|
Hex Code | #881099 |
RGB Code | rgb(136, 16, 153) |
HSL Code | hsl(293, 81%, 33%) |
#881099 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(136, 16, 153); }
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(293, 81%, 33%); }
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 #881099
RGB Code | Hex Code | Preview |
---|---|---|
rgb(136, 16, 153, 10%) | #8810991a | |
rgb(136, 16, 153, 20%) | #88109933 | |
rgb(136, 16, 153, 40%) | #8810994C | |
rgb(136, 16, 153, 60%) | #88109999 | |
rgb(136, 16, 153, 80%) | #881099CC | |
rgb(136, 16, 153, 100%) | #881099FF |
Saturated and desaturated colors of #881099
HSL Code | Preview |
---|---|
hsl(293, 10%, 33%) | |
hsl(293, 20%, 33%) | |
hsl(293, 40%, 33%) | |
hsl(293, 60%, 33%) | |
hsl(293, 80%, 33%) | |
hsl(293, 100%, 33%) |
#881099 Color Usage In CSS
body { color: #881099; } p { color: rgb(136, 16, 153); } header { border-bottom:1px solid #881099; }