#b09699 Color
Color Codes | |
---|---|
Hex Code | #b09699 |
RGB Code | rgb(176, 150, 153) |
HSL Code | hsl(353, 14%, 64%) |
#b09699 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(176, 150, 153); }
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(353, 14%, 64%); }
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 #b09699
RGB Code | Hex Code | Preview |
---|---|---|
rgb(176, 150, 153, 10%) | #b096991a | |
rgb(176, 150, 153, 20%) | #b0969933 | |
rgb(176, 150, 153, 40%) | #b096994C | |
rgb(176, 150, 153, 60%) | #b0969999 | |
rgb(176, 150, 153, 80%) | #b09699CC | |
rgb(176, 150, 153, 100%) | #b09699FF |
Saturated and desaturated colors of #b09699
HSL Code | Preview |
---|---|
hsl(353, 10%, 64%) | |
hsl(353, 20%, 64%) | |
hsl(353, 40%, 64%) | |
hsl(353, 60%, 64%) | |
hsl(353, 80%, 64%) | |
hsl(353, 100%, 64%) |
#b09699 Color Usage In CSS
body { color: #b09699; } p { color: rgb(176, 150, 153); } header { border-bottom:1px solid #b09699; }