#b18707 Color
Color Codes | |
---|---|
Hex Code | #b18707 |
RGB Code | rgb(177, 135, 07) |
HSL Code | hsl(45, 92%, 36%) |
#b18707 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(177, 135, 07); }
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(45, 92%, 36%); }
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 #b18707
RGB Code | Hex Code | Preview |
---|---|---|
rgb(177, 135, 07, 10%) | #b187071a | |
rgb(177, 135, 07, 20%) | #b1870733 | |
rgb(177, 135, 07, 40%) | #b187074C | |
rgb(177, 135, 07, 60%) | #b1870799 | |
rgb(177, 135, 07, 80%) | #b18707CC | |
rgb(177, 135, 07, 100%) | #b18707FF |
Saturated and desaturated colors of #b18707
HSL Code | Preview |
---|---|
hsl(45, 10%, 36%) | |
hsl(45, 20%, 36%) | |
hsl(45, 40%, 36%) | |
hsl(45, 60%, 36%) | |
hsl(45, 80%, 36%) | |
hsl(45, 100%, 36%) |
#b18707 Color Usage In CSS
body { color: #b18707; } p { color: rgb(177, 135, 07); } header { border-bottom:1px solid #b18707; }