#be32da Color
Color Codes | |
---|---|
Hex Code | #be32da |
RGB Code | rgb(190, 50, 218) |
HSL Code | hsl(290, 69%, 53%) |
#be32da Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(190, 50, 218); }
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(290, 69%, 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 #be32da
RGB Code | Hex Code | Preview |
---|---|---|
rgb(190, 50, 218, 10%) | #be32da1a | |
rgb(190, 50, 218, 20%) | #be32da33 | |
rgb(190, 50, 218, 40%) | #be32da4C | |
rgb(190, 50, 218, 60%) | #be32da99 | |
rgb(190, 50, 218, 80%) | #be32daCC | |
rgb(190, 50, 218, 100%) | #be32daFF |
Saturated and desaturated colors of #be32da
HSL Code | Preview |
---|---|
hsl(290, 10%, 53%) | |
hsl(290, 20%, 53%) | |
hsl(290, 40%, 53%) | |
hsl(290, 60%, 53%) | |
hsl(290, 80%, 53%) | |
hsl(290, 100%, 53%) |
#be32da Color Usage In CSS
body { color: #be32da; } p { color: rgb(190, 50, 218); } header { border-bottom:1px solid #be32da; }