#706c34 Color
Color Codes | |
---|---|
Hex Code | #706c34 |
RGB Code | rgb(112, 108, 52) |
HSL Code | hsl(56, 37%, 32%) |
#706c34 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(112, 108, 52); }
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(56, 37%, 32%); }
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 #706c34
RGB Code | Hex Code | Preview |
---|---|---|
rgb(112, 108, 52, 10%) | #706c341a | |
rgb(112, 108, 52, 20%) | #706c3433 | |
rgb(112, 108, 52, 40%) | #706c344C | |
rgb(112, 108, 52, 60%) | #706c3499 | |
rgb(112, 108, 52, 80%) | #706c34CC | |
rgb(112, 108, 52, 100%) | #706c34FF |
Saturated and desaturated colors of #706c34
HSL Code | Preview |
---|---|
hsl(56, 10%, 32%) | |
hsl(56, 20%, 32%) | |
hsl(56, 40%, 32%) | |
hsl(56, 60%, 32%) | |
hsl(56, 80%, 32%) | |
hsl(56, 100%, 32%) |
#706c34 Color Usage In CSS
body { color: #706c34; } p { color: rgb(112, 108, 52); } header { border-bottom:1px solid #706c34; }