#b77922 Color
Color Codes | |
---|---|
Hex Code | #b77922 |
RGB Code | rgb(183, 121, 34) |
HSL Code | hsl(35, 69%, 43%) |
#b77922 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(183, 121, 34); }
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(35, 69%, 43%); }
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 #b77922
RGB Code | Hex Code | Preview |
---|---|---|
rgb(183, 121, 34, 10%) | #b779221a | |
rgb(183, 121, 34, 20%) | #b7792233 | |
rgb(183, 121, 34, 40%) | #b779224C | |
rgb(183, 121, 34, 60%) | #b7792299 | |
rgb(183, 121, 34, 80%) | #b77922CC | |
rgb(183, 121, 34, 100%) | #b77922FF |
Saturated and desaturated colors of #b77922
HSL Code | Preview |
---|---|
hsl(35, 10%, 43%) | |
hsl(35, 20%, 43%) | |
hsl(35, 40%, 43%) | |
hsl(35, 60%, 43%) | |
hsl(35, 80%, 43%) | |
hsl(35, 100%, 43%) |
#b77922 Color Usage In CSS
body { color: #b77922; } p { color: rgb(183, 121, 34); } header { border-bottom:1px solid #b77922; }