#b0328a Color
Color Codes | |
---|---|
Hex Code | #b0328a |
RGB Code | rgb(176, 50, 138) |
HSL Code | hsl(318, 56%, 44%) |
#b0328a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(176, 50, 138); }
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(318, 56%, 44%); }
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 #b0328a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(176, 50, 138, 10%) | #b0328a1a | |
rgb(176, 50, 138, 20%) | #b0328a33 | |
rgb(176, 50, 138, 40%) | #b0328a4C | |
rgb(176, 50, 138, 60%) | #b0328a99 | |
rgb(176, 50, 138, 80%) | #b0328aCC | |
rgb(176, 50, 138, 100%) | #b0328aFF |
Saturated and desaturated colors of #b0328a
HSL Code | Preview |
---|---|
hsl(318, 10%, 44%) | |
hsl(318, 20%, 44%) | |
hsl(318, 40%, 44%) | |
hsl(318, 60%, 44%) | |
hsl(318, 80%, 44%) | |
hsl(318, 100%, 44%) |
#b0328a Color Usage In CSS
body { color: #b0328a; } p { color: rgb(176, 50, 138); } header { border-bottom:1px solid #b0328a; }