#a184bc Color
Color Codes | |
---|---|
Hex Code | #a184bc |
RGB Code | rgb(161, 132, 188) |
HSL Code | hsl(271, 29%, 63%) |
#a184bc Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(161, 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(271, 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 #a184bc
RGB Code | Hex Code | Preview |
---|---|---|
rgb(161, 132, 188, 10%) | #a184bc1a | |
rgb(161, 132, 188, 20%) | #a184bc33 | |
rgb(161, 132, 188, 40%) | #a184bc4C | |
rgb(161, 132, 188, 60%) | #a184bc99 | |
rgb(161, 132, 188, 80%) | #a184bcCC | |
rgb(161, 132, 188, 100%) | #a184bcFF |
Saturated and desaturated colors of #a184bc
HSL Code | Preview |
---|---|
hsl(271, 10%, 63%) | |
hsl(271, 20%, 63%) | |
hsl(271, 40%, 63%) | |
hsl(271, 60%, 63%) | |
hsl(271, 80%, 63%) | |
hsl(271, 100%, 63%) |
#a184bc Color Usage In CSS
body { color: #a184bc; } p { color: rgb(161, 132, 188); } header { border-bottom:1px solid #a184bc; }