#676b60 Color
Color Codes | |
---|---|
Hex Code | #676b60 |
RGB Code | rgb(103, 107, 96) |
HSL Code | hsl(82, 5%, 40%) |
#676b60 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(103, 107, 96); }
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(82, 5%, 40%); }
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 #676b60
RGB Code | Hex Code | Preview |
---|---|---|
rgb(103, 107, 96, 10%) | #676b601a | |
rgb(103, 107, 96, 20%) | #676b6033 | |
rgb(103, 107, 96, 40%) | #676b604C | |
rgb(103, 107, 96, 60%) | #676b6099 | |
rgb(103, 107, 96, 80%) | #676b60CC | |
rgb(103, 107, 96, 100%) | #676b60FF |
Saturated and desaturated colors of #676b60
HSL Code | Preview |
---|---|
hsl(82, 10%, 40%) | |
hsl(82, 20%, 40%) | |
hsl(82, 40%, 40%) | |
hsl(82, 60%, 40%) | |
hsl(82, 80%, 40%) | |
hsl(82, 100%, 40%) |
#676b60 Color Usage In CSS
body { color: #676b60; } p { color: rgb(103, 107, 96); } header { border-bottom:1px solid #676b60; }