#893f7b Color
Color Codes | |
---|---|
Hex Code | #893f7b |
RGB Code | rgb(137, 63, 123) |
HSL Code | hsl(311, 37%, 39%) |
#893f7b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(137, 63, 123); }
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(311, 37%, 39%); }
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 #893f7b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(137, 63, 123, 10%) | #893f7b1a | |
rgb(137, 63, 123, 20%) | #893f7b33 | |
rgb(137, 63, 123, 40%) | #893f7b4C | |
rgb(137, 63, 123, 60%) | #893f7b99 | |
rgb(137, 63, 123, 80%) | #893f7bCC | |
rgb(137, 63, 123, 100%) | #893f7bFF |
Saturated and desaturated colors of #893f7b
HSL Code | Preview |
---|---|
hsl(311, 10%, 39%) | |
hsl(311, 20%, 39%) | |
hsl(311, 40%, 39%) | |
hsl(311, 60%, 39%) | |
hsl(311, 80%, 39%) | |
hsl(311, 100%, 39%) |
#893f7b Color Usage In CSS
body { color: #893f7b; } p { color: rgb(137, 63, 123); } header { border-bottom:1px solid #893f7b; }