#b358b4 Color
Color Codes | |
---|---|
Hex Code | #b358b4 |
RGB Code | rgb(179, 88, 180) |
HSL Code | hsl(299, 38%, 53%) |
#b358b4 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(179, 88, 180); }
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(299, 38%, 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 #b358b4
RGB Code | Hex Code | Preview |
---|---|---|
rgb(179, 88, 180, 10%) | #b358b41a | |
rgb(179, 88, 180, 20%) | #b358b433 | |
rgb(179, 88, 180, 40%) | #b358b44C | |
rgb(179, 88, 180, 60%) | #b358b499 | |
rgb(179, 88, 180, 80%) | #b358b4CC | |
rgb(179, 88, 180, 100%) | #b358b4FF |
Saturated and desaturated colors of #b358b4
HSL Code | Preview |
---|---|
hsl(299, 10%, 53%) | |
hsl(299, 20%, 53%) | |
hsl(299, 40%, 53%) | |
hsl(299, 60%, 53%) | |
hsl(299, 80%, 53%) | |
hsl(299, 100%, 53%) |
#b358b4 Color Usage In CSS
body { color: #b358b4; } p { color: rgb(179, 88, 180); } header { border-bottom:1px solid #b358b4; }