#b1aead Color
Color Codes | |
---|---|
Hex Code | #b1aead |
RGB Code | rgb(177, 174, 173) |
HSL Code | hsl(15, 2%, 69%) |
#b1aead Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(177, 174, 173); }
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(15, 2%, 69%); }
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 #b1aead
RGB Code | Hex Code | Preview |
---|---|---|
rgb(177, 174, 173, 10%) | #b1aead1a | |
rgb(177, 174, 173, 20%) | #b1aead33 | |
rgb(177, 174, 173, 40%) | #b1aead4C | |
rgb(177, 174, 173, 60%) | #b1aead99 | |
rgb(177, 174, 173, 80%) | #b1aeadCC | |
rgb(177, 174, 173, 100%) | #b1aeadFF |
Saturated and desaturated colors of #b1aead
HSL Code | Preview |
---|---|
hsl(15, 10%, 69%) | |
hsl(15, 20%, 69%) | |
hsl(15, 40%, 69%) | |
hsl(15, 60%, 69%) | |
hsl(15, 80%, 69%) | |
hsl(15, 100%, 69%) |
#b1aead Color Usage In CSS
body { color: #b1aead; } p { color: rgb(177, 174, 173); } header { border-bottom:1px solid #b1aead; }