#b1982c Color
Color Codes | |
---|---|
Hex Code | #b1982c |
RGB Code | rgb(177, 152, 44) |
HSL Code | hsl(49, 60%, 43%) |
#b1982c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(177, 152, 44); }
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(49, 60%, 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 #b1982c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(177, 152, 44, 10%) | #b1982c1a | |
rgb(177, 152, 44, 20%) | #b1982c33 | |
rgb(177, 152, 44, 40%) | #b1982c4C | |
rgb(177, 152, 44, 60%) | #b1982c99 | |
rgb(177, 152, 44, 80%) | #b1982cCC | |
rgb(177, 152, 44, 100%) | #b1982cFF |
Saturated and desaturated colors of #b1982c
HSL Code | Preview |
---|---|
hsl(49, 10%, 43%) | |
hsl(49, 20%, 43%) | |
hsl(49, 40%, 43%) | |
hsl(49, 60%, 43%) | |
hsl(49, 80%, 43%) | |
hsl(49, 100%, 43%) |
#b1982c Color Usage In CSS
body { color: #b1982c; } p { color: rgb(177, 152, 44); } header { border-bottom:1px solid #b1982c; }