#b57b16 Color
Color Codes | |
---|---|
Hex Code | #b57b16 |
RGB Code | rgb(181, 123, 22) |
HSL Code | hsl(38, 78%, 40%) |
#b57b16 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(181, 123, 22); }
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(38, 78%, 40%); }
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 #b57b16
RGB Code | Hex Code | Preview |
---|---|---|
rgb(181, 123, 22, 10%) | #b57b161a | |
rgb(181, 123, 22, 20%) | #b57b1633 | |
rgb(181, 123, 22, 40%) | #b57b164C | |
rgb(181, 123, 22, 60%) | #b57b1699 | |
rgb(181, 123, 22, 80%) | #b57b16CC | |
rgb(181, 123, 22, 100%) | #b57b16FF |
Saturated and desaturated colors of #b57b16
HSL Code | Preview |
---|---|
hsl(38, 10%, 40%) | |
hsl(38, 20%, 40%) | |
hsl(38, 40%, 40%) | |
hsl(38, 60%, 40%) | |
hsl(38, 80%, 40%) | |
hsl(38, 100%, 40%) |
#b57b16 Color Usage In CSS
body { color: #b57b16; } p { color: rgb(181, 123, 22); } header { border-bottom:1px solid #b57b16; }