#6a716d Color
Color Codes | |
---|---|
Hex Code | #6a716d |
RGB Code | rgb(106, 113, 109) |
HSL Code | hsl(146, 3%, 43%) |
#6a716d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(106, 113, 109); }
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(146, 3%, 43%); }
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 #6a716d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(106, 113, 109, 10%) | #6a716d1a | |
rgb(106, 113, 109, 20%) | #6a716d33 | |
rgb(106, 113, 109, 40%) | #6a716d4C | |
rgb(106, 113, 109, 60%) | #6a716d99 | |
rgb(106, 113, 109, 80%) | #6a716dCC | |
rgb(106, 113, 109, 100%) | #6a716dFF |
Saturated and desaturated colors of #6a716d
HSL Code | Preview |
---|---|
hsl(146, 10%, 43%) | |
hsl(146, 20%, 43%) | |
hsl(146, 40%, 43%) | |
hsl(146, 60%, 43%) | |
hsl(146, 80%, 43%) | |
hsl(146, 100%, 43%) |
#6a716d Color Usage In CSS
body { color: #6a716d; } p { color: rgb(106, 113, 109); } header { border-bottom:1px solid #6a716d; }