#b98672 Color
Color Codes | |
---|---|
Hex Code | #b98672 |
RGB Code | rgb(185, 134, 114) |
HSL Code | hsl(17, 34%, 59%) |
#b98672 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(185, 134, 114); }
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(17, 34%, 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 #b98672
RGB Code | Hex Code | Preview |
---|---|---|
rgb(185, 134, 114, 10%) | #b986721a | |
rgb(185, 134, 114, 20%) | #b9867233 | |
rgb(185, 134, 114, 40%) | #b986724C | |
rgb(185, 134, 114, 60%) | #b9867299 | |
rgb(185, 134, 114, 80%) | #b98672CC | |
rgb(185, 134, 114, 100%) | #b98672FF |
Saturated and desaturated colors of #b98672
HSL Code | Preview |
---|---|
hsl(17, 10%, 59%) | |
hsl(17, 20%, 59%) | |
hsl(17, 40%, 59%) | |
hsl(17, 60%, 59%) | |
hsl(17, 80%, 59%) | |
hsl(17, 100%, 59%) |
#b98672 Color Usage In CSS
body { color: #b98672; } p { color: rgb(185, 134, 114); } header { border-bottom:1px solid #b98672; }