#bc84bc Color
Color Codes | |
---|---|
Hex Code | #bc84bc |
RGB Code | rgb(188, 132, 188) |
HSL Code | hsl(300, 29%, 63%) |
#bc84bc Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(188, 132, 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(300, 29%, 63%); }
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 #bc84bc
RGB Code | Hex Code | Preview |
---|---|---|
rgb(188, 132, 188, 10%) | #bc84bc1a | |
rgb(188, 132, 188, 20%) | #bc84bc33 | |
rgb(188, 132, 188, 40%) | #bc84bc4C | |
rgb(188, 132, 188, 60%) | #bc84bc99 | |
rgb(188, 132, 188, 80%) | #bc84bcCC | |
rgb(188, 132, 188, 100%) | #bc84bcFF |
Saturated and desaturated colors of #bc84bc
HSL Code | Preview |
---|---|
hsl(300, 10%, 63%) | |
hsl(300, 20%, 63%) | |
hsl(300, 40%, 63%) | |
hsl(300, 60%, 63%) | |
hsl(300, 80%, 63%) | |
hsl(300, 100%, 63%) |
#bc84bc Color Usage In CSS
body { color: #bc84bc; } p { color: rgb(188, 132, 188); } header { border-bottom:1px solid #bc84bc; }