#b08723 Color
Color Codes | |
---|---|
Hex Code | #b08723 |
RGB Code | rgb(176, 135, 35) |
HSL Code | hsl(43, 67%, 41%) |
#b08723 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(176, 135, 35); }
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(43, 67%, 41%); }
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 #b08723
RGB Code | Hex Code | Preview |
---|---|---|
rgb(176, 135, 35, 10%) | #b087231a | |
rgb(176, 135, 35, 20%) | #b0872333 | |
rgb(176, 135, 35, 40%) | #b087234C | |
rgb(176, 135, 35, 60%) | #b0872399 | |
rgb(176, 135, 35, 80%) | #b08723CC | |
rgb(176, 135, 35, 100%) | #b08723FF |
Saturated and desaturated colors of #b08723
HSL Code | Preview |
---|---|
hsl(43, 10%, 41%) | |
hsl(43, 20%, 41%) | |
hsl(43, 40%, 41%) | |
hsl(43, 60%, 41%) | |
hsl(43, 80%, 41%) | |
hsl(43, 100%, 41%) |
#b08723 Color Usage In CSS
body { color: #b08723; } p { color: rgb(176, 135, 35); } header { border-bottom:1px solid #b08723; }