#bb528e Color
Color Codes | |
---|---|
Hex Code | #bb528e |
RGB Code | rgb(187, 82, 142) |
HSL Code | hsl(326, 44%, 53%) |
#bb528e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(187, 82, 142); }
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(326, 44%, 53%); }
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 #bb528e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(187, 82, 142, 10%) | #bb528e1a | |
rgb(187, 82, 142, 20%) | #bb528e33 | |
rgb(187, 82, 142, 40%) | #bb528e4C | |
rgb(187, 82, 142, 60%) | #bb528e99 | |
rgb(187, 82, 142, 80%) | #bb528eCC | |
rgb(187, 82, 142, 100%) | #bb528eFF |
Saturated and desaturated colors of #bb528e
HSL Code | Preview |
---|---|
hsl(326, 10%, 53%) | |
hsl(326, 20%, 53%) | |
hsl(326, 40%, 53%) | |
hsl(326, 60%, 53%) | |
hsl(326, 80%, 53%) | |
hsl(326, 100%, 53%) |
#bb528e Color Usage In CSS
body { color: #bb528e; } p { color: rgb(187, 82, 142); } header { border-bottom:1px solid #bb528e; }