#b495ac Color
Color Codes | |
---|---|
Hex Code | #b495ac |
RGB Code | rgb(180, 149, 172) |
HSL Code | hsl(315, 17%, 65%) |
#b495ac Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(180, 149, 172); }
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(315, 17%, 65%); }
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 #b495ac
RGB Code | Hex Code | Preview |
---|---|---|
rgb(180, 149, 172, 10%) | #b495ac1a | |
rgb(180, 149, 172, 20%) | #b495ac33 | |
rgb(180, 149, 172, 40%) | #b495ac4C | |
rgb(180, 149, 172, 60%) | #b495ac99 | |
rgb(180, 149, 172, 80%) | #b495acCC | |
rgb(180, 149, 172, 100%) | #b495acFF |
Saturated and desaturated colors of #b495ac
HSL Code | Preview |
---|---|
hsl(315, 10%, 65%) | |
hsl(315, 20%, 65%) | |
hsl(315, 40%, 65%) | |
hsl(315, 60%, 65%) | |
hsl(315, 80%, 65%) | |
hsl(315, 100%, 65%) |
#b495ac Color Usage In CSS
body { color: #b495ac; } p { color: rgb(180, 149, 172); } header { border-bottom:1px solid #b495ac; }