#713a2d Color
Color Codes | |
---|---|
Hex Code | #713a2d |
RGB Code | rgb(113, 58, 45) |
HSL Code | hsl(11, 43%, 31%) |
#713a2d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(113, 58, 45); }
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(11, 43%, 31%); }
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 #713a2d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(113, 58, 45, 10%) | #713a2d1a | |
rgb(113, 58, 45, 20%) | #713a2d33 | |
rgb(113, 58, 45, 40%) | #713a2d4C | |
rgb(113, 58, 45, 60%) | #713a2d99 | |
rgb(113, 58, 45, 80%) | #713a2dCC | |
rgb(113, 58, 45, 100%) | #713a2dFF |
Saturated and desaturated colors of #713a2d
HSL Code | Preview |
---|---|
hsl(11, 10%, 31%) | |
hsl(11, 20%, 31%) | |
hsl(11, 40%, 31%) | |
hsl(11, 60%, 31%) | |
hsl(11, 80%, 31%) | |
hsl(11, 100%, 31%) |
#713a2d Color Usage In CSS
body { color: #713a2d; } p { color: rgb(113, 58, 45); } header { border-bottom:1px solid #713a2d; }