#b3b4ad Color
Color Codes | |
---|---|
Hex Code | #b3b4ad |
RGB Code | rgb(179, 180, 173) |
HSL Code | hsl(69, 4%, 69%) |
#b3b4ad Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(179, 180, 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(69, 4%, 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 #b3b4ad
RGB Code | Hex Code | Preview |
---|---|---|
rgb(179, 180, 173, 10%) | #b3b4ad1a | |
rgb(179, 180, 173, 20%) | #b3b4ad33 | |
rgb(179, 180, 173, 40%) | #b3b4ad4C | |
rgb(179, 180, 173, 60%) | #b3b4ad99 | |
rgb(179, 180, 173, 80%) | #b3b4adCC | |
rgb(179, 180, 173, 100%) | #b3b4adFF |
Saturated and desaturated colors of #b3b4ad
HSL Code | Preview |
---|---|
hsl(69, 10%, 69%) | |
hsl(69, 20%, 69%) | |
hsl(69, 40%, 69%) | |
hsl(69, 60%, 69%) | |
hsl(69, 80%, 69%) | |
hsl(69, 100%, 69%) |
#b3b4ad Color Usage In CSS
body { color: #b3b4ad; } p { color: rgb(179, 180, 173); } header { border-bottom:1px solid #b3b4ad; }