#776c3f Color
Color Codes | |
---|---|
Hex Code | #776c3f |
RGB Code | rgb(119, 108, 63) |
HSL Code | hsl(48, 31%, 36%) |
#776c3f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(119, 108, 63); }
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, 31%, 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 #776c3f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(119, 108, 63, 10%) | #776c3f1a | |
rgb(119, 108, 63, 20%) | #776c3f33 | |
rgb(119, 108, 63, 40%) | #776c3f4C | |
rgb(119, 108, 63, 60%) | #776c3f99 | |
rgb(119, 108, 63, 80%) | #776c3fCC | |
rgb(119, 108, 63, 100%) | #776c3fFF |
Saturated and desaturated colors of #776c3f
HSL Code | Preview |
---|---|
hsl(48, 10%, 36%) | |
hsl(48, 20%, 36%) | |
hsl(48, 40%, 36%) | |
hsl(48, 60%, 36%) | |
hsl(48, 80%, 36%) | |
hsl(48, 100%, 36%) |
#776c3f Color Usage In CSS
body { color: #776c3f; } p { color: rgb(119, 108, 63); } header { border-bottom:1px solid #776c3f; }