#b963bc Color
Color Codes | |
---|---|
Hex Code | #b963bc |
RGB Code | rgb(185, 99, 188) |
HSL Code | hsl(298, 40%, 56%) |
#b963bc Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(185, 99, 188); }
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(298, 40%, 56%); }
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 #b963bc
RGB Code | Hex Code | Preview |
---|---|---|
rgb(185, 99, 188, 10%) | #b963bc1a | |
rgb(185, 99, 188, 20%) | #b963bc33 | |
rgb(185, 99, 188, 40%) | #b963bc4C | |
rgb(185, 99, 188, 60%) | #b963bc99 | |
rgb(185, 99, 188, 80%) | #b963bcCC | |
rgb(185, 99, 188, 100%) | #b963bcFF |
Saturated and desaturated colors of #b963bc
HSL Code | Preview |
---|---|
hsl(298, 10%, 56%) | |
hsl(298, 20%, 56%) | |
hsl(298, 40%, 56%) | |
hsl(298, 60%, 56%) | |
hsl(298, 80%, 56%) | |
hsl(298, 100%, 56%) |
#b963bc Color Usage In CSS
body { color: #b963bc; } p { color: rgb(185, 99, 188); } header { border-bottom:1px solid #b963bc; }