#996287 Color
Color Codes | |
---|---|
Hex Code | #996287 |
RGB Code | rgb(153, 98, 135) |
HSL Code | hsl(320, 22%, 49%) |
#996287 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(153, 98, 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(320, 22%, 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 #996287
RGB Code | Hex Code | Preview |
---|---|---|
rgb(153, 98, 135, 10%) | #9962871a | |
rgb(153, 98, 135, 20%) | #99628733 | |
rgb(153, 98, 135, 40%) | #9962874C | |
rgb(153, 98, 135, 60%) | #99628799 | |
rgb(153, 98, 135, 80%) | #996287CC | |
rgb(153, 98, 135, 100%) | #996287FF |
Saturated and desaturated colors of #996287
HSL Code | Preview |
---|---|
hsl(320, 10%, 49%) | |
hsl(320, 20%, 49%) | |
hsl(320, 40%, 49%) | |
hsl(320, 60%, 49%) | |
hsl(320, 80%, 49%) | |
hsl(320, 100%, 49%) |
#996287 Color Usage In CSS
body { color: #996287; } p { color: rgb(153, 98, 135); } header { border-bottom:1px solid #996287; }