#856bcc Color
Color Codes | |
---|---|
Hex Code | #856bcc |
RGB Code | rgb(133, 107, 204) |
HSL Code | hsl(256, 49%, 61%) |
#856bcc Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(133, 107, 204); }
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(256, 49%, 61%); }
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 #856bcc
RGB Code | Hex Code | Preview |
---|---|---|
rgb(133, 107, 204, 10%) | #856bcc1a | |
rgb(133, 107, 204, 20%) | #856bcc33 | |
rgb(133, 107, 204, 40%) | #856bcc4C | |
rgb(133, 107, 204, 60%) | #856bcc99 | |
rgb(133, 107, 204, 80%) | #856bccCC | |
rgb(133, 107, 204, 100%) | #856bccFF |
Saturated and desaturated colors of #856bcc
HSL Code | Preview |
---|---|
hsl(256, 10%, 61%) | |
hsl(256, 20%, 61%) | |
hsl(256, 40%, 61%) | |
hsl(256, 60%, 61%) | |
hsl(256, 80%, 61%) | |
hsl(256, 100%, 61%) |
#856bcc Color Usage In CSS
body { color: #856bcc; } p { color: rgb(133, 107, 204); } header { border-bottom:1px solid #856bcc; }