#916e74 Color
Color Codes | |
---|---|
Hex Code | #916e74 |
RGB Code | rgb(145, 110, 116) |
HSL Code | hsl(350, 14%, 50%) |
#916e74 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(145, 110, 116); }
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(350, 14%, 50%); }
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 #916e74
RGB Code | Hex Code | Preview |
---|---|---|
rgb(145, 110, 116, 10%) | #916e741a | |
rgb(145, 110, 116, 20%) | #916e7433 | |
rgb(145, 110, 116, 40%) | #916e744C | |
rgb(145, 110, 116, 60%) | #916e7499 | |
rgb(145, 110, 116, 80%) | #916e74CC | |
rgb(145, 110, 116, 100%) | #916e74FF |
Saturated and desaturated colors of #916e74
HSL Code | Preview |
---|---|
hsl(350, 10%, 50%) | |
hsl(350, 20%, 50%) | |
hsl(350, 40%, 50%) | |
hsl(350, 60%, 50%) | |
hsl(350, 80%, 50%) | |
hsl(350, 100%, 50%) |
#916e74 Color Usage In CSS
body { color: #916e74; } p { color: rgb(145, 110, 116); } header { border-bottom:1px solid #916e74; }