#b47878 Color
Color Codes | |
---|---|
Hex Code | #b47878 |
RGB Code | rgb(180, 120, 120) |
HSL Code | hsl(0, 29%, 59%) |
#b47878 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(180, 120, 120); }
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(0, 29%, 59%); }
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 #b47878
RGB Code | Hex Code | Preview |
---|---|---|
rgb(180, 120, 120, 10%) | #b478781a | |
rgb(180, 120, 120, 20%) | #b4787833 | |
rgb(180, 120, 120, 40%) | #b478784C | |
rgb(180, 120, 120, 60%) | #b4787899 | |
rgb(180, 120, 120, 80%) | #b47878CC | |
rgb(180, 120, 120, 100%) | #b47878FF |
Saturated and desaturated colors of #b47878
HSL Code | Preview |
---|---|
hsl(0, 10%, 59%) | |
hsl(0, 20%, 59%) | |
hsl(0, 40%, 59%) | |
hsl(0, 60%, 59%) | |
hsl(0, 80%, 59%) | |
hsl(0, 100%, 59%) |
#b47878 Color Usage In CSS
body { color: #b47878; } p { color: rgb(180, 120, 120); } header { border-bottom:1px solid #b47878; }