#b3968c Color
Color Codes | |
---|---|
Hex Code | #b3968c |
RGB Code | rgb(179, 150, 140) |
HSL Code | hsl(15, 20%, 63%) |
#b3968c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(179, 150, 140); }
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, 20%, 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 #b3968c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(179, 150, 140, 10%) | #b3968c1a | |
rgb(179, 150, 140, 20%) | #b3968c33 | |
rgb(179, 150, 140, 40%) | #b3968c4C | |
rgb(179, 150, 140, 60%) | #b3968c99 | |
rgb(179, 150, 140, 80%) | #b3968cCC | |
rgb(179, 150, 140, 100%) | #b3968cFF |
Saturated and desaturated colors of #b3968c
HSL Code | Preview |
---|---|
hsl(15, 10%, 63%) | |
hsl(15, 20%, 63%) | |
hsl(15, 40%, 63%) | |
hsl(15, 60%, 63%) | |
hsl(15, 80%, 63%) | |
hsl(15, 100%, 63%) |
#b3968c Color Usage In CSS
body { color: #b3968c; } p { color: rgb(179, 150, 140); } header { border-bottom:1px solid #b3968c; }