#886dbf Color
Color Codes | |
---|---|
Hex Code | #886dbf |
RGB Code | rgb(136, 109, 191) |
HSL Code | hsl(260, 39%, 59%) |
#886dbf Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(136, 109, 191); }
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(260, 39%, 59%); }
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 #886dbf
RGB Code | Hex Code | Preview |
---|---|---|
rgb(136, 109, 191, 10%) | #886dbf1a | |
rgb(136, 109, 191, 20%) | #886dbf33 | |
rgb(136, 109, 191, 40%) | #886dbf4C | |
rgb(136, 109, 191, 60%) | #886dbf99 | |
rgb(136, 109, 191, 80%) | #886dbfCC | |
rgb(136, 109, 191, 100%) | #886dbfFF |
Saturated and desaturated colors of #886dbf
HSL Code | Preview |
---|---|
hsl(260, 10%, 59%) | |
hsl(260, 20%, 59%) | |
hsl(260, 40%, 59%) | |
hsl(260, 60%, 59%) | |
hsl(260, 80%, 59%) | |
hsl(260, 100%, 59%) |
#886dbf Color Usage In CSS
body { color: #886dbf; } p { color: rgb(136, 109, 191); } header { border-bottom:1px solid #886dbf; }