#76682c Color
Color Codes | |
---|---|
Hex Code | #76682c |
RGB Code | rgb(118, 104, 44) |
HSL Code | hsl(49, 46%, 32%) |
#76682c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(118, 104, 44); }
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(49, 46%, 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 #76682c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(118, 104, 44, 10%) | #76682c1a | |
rgb(118, 104, 44, 20%) | #76682c33 | |
rgb(118, 104, 44, 40%) | #76682c4C | |
rgb(118, 104, 44, 60%) | #76682c99 | |
rgb(118, 104, 44, 80%) | #76682cCC | |
rgb(118, 104, 44, 100%) | #76682cFF |
Saturated and desaturated colors of #76682c
HSL Code | Preview |
---|---|
hsl(49, 10%, 32%) | |
hsl(49, 20%, 32%) | |
hsl(49, 40%, 32%) | |
hsl(49, 60%, 32%) | |
hsl(49, 80%, 32%) | |
hsl(49, 100%, 32%) |
#76682c Color Usage In CSS
body { color: #76682c; } p { color: rgb(118, 104, 44); } header { border-bottom:1px solid #76682c; }