#86732a Color
Color Codes | |
---|---|
Hex Code | #86732a |
RGB Code | rgb(134, 115, 42) |
HSL Code | hsl(48, 52%, 35%) |
#86732a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(134, 115, 42); }
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(48, 52%, 35%); }
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 #86732a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(134, 115, 42, 10%) | #86732a1a | |
rgb(134, 115, 42, 20%) | #86732a33 | |
rgb(134, 115, 42, 40%) | #86732a4C | |
rgb(134, 115, 42, 60%) | #86732a99 | |
rgb(134, 115, 42, 80%) | #86732aCC | |
rgb(134, 115, 42, 100%) | #86732aFF |
Saturated and desaturated colors of #86732a
HSL Code | Preview |
---|---|
hsl(48, 10%, 35%) | |
hsl(48, 20%, 35%) | |
hsl(48, 40%, 35%) | |
hsl(48, 60%, 35%) | |
hsl(48, 80%, 35%) | |
hsl(48, 100%, 35%) |
#86732a Color Usage In CSS
body { color: #86732a; } p { color: rgb(134, 115, 42); } header { border-bottom:1px solid #86732a; }