#b0862f Color
Color Codes | |
---|---|
Hex Code | #b0862f |
RGB Code | rgb(176, 134, 47) |
HSL Code | hsl(40, 58%, 44%) |
#b0862f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(176, 134, 47); }
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(40, 58%, 44%); }
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 #b0862f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(176, 134, 47, 10%) | #b0862f1a | |
rgb(176, 134, 47, 20%) | #b0862f33 | |
rgb(176, 134, 47, 40%) | #b0862f4C | |
rgb(176, 134, 47, 60%) | #b0862f99 | |
rgb(176, 134, 47, 80%) | #b0862fCC | |
rgb(176, 134, 47, 100%) | #b0862fFF |
Saturated and desaturated colors of #b0862f
HSL Code | Preview |
---|---|
hsl(40, 10%, 44%) | |
hsl(40, 20%, 44%) | |
hsl(40, 40%, 44%) | |
hsl(40, 60%, 44%) | |
hsl(40, 80%, 44%) | |
hsl(40, 100%, 44%) |
#b0862f Color Usage In CSS
body { color: #b0862f; } p { color: rgb(176, 134, 47); } header { border-bottom:1px solid #b0862f; }