#6c756f Color
Color Codes | |
---|---|
Hex Code | #6c756f |
RGB Code | rgb(108, 117, 111) |
HSL Code | hsl(140, 4%, 44%) |
#6c756f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(108, 117, 111); }
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(140, 4%, 44%); }
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 #6c756f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(108, 117, 111, 10%) | #6c756f1a | |
rgb(108, 117, 111, 20%) | #6c756f33 | |
rgb(108, 117, 111, 40%) | #6c756f4C | |
rgb(108, 117, 111, 60%) | #6c756f99 | |
rgb(108, 117, 111, 80%) | #6c756fCC | |
rgb(108, 117, 111, 100%) | #6c756fFF |
Saturated and desaturated colors of #6c756f
HSL Code | Preview |
---|---|
hsl(140, 10%, 44%) | |
hsl(140, 20%, 44%) | |
hsl(140, 40%, 44%) | |
hsl(140, 60%, 44%) | |
hsl(140, 80%, 44%) | |
hsl(140, 100%, 44%) |
#6c756f Color Usage In CSS
body { color: #6c756f; } p { color: rgb(108, 117, 111); } header { border-bottom:1px solid #6c756f; }