#676f87 Color
Color Codes | |
---|---|
Hex Code | #676f87 |
RGB Code | rgb(103, 111, 135) |
HSL Code | hsl(225, 13%, 47%) |
#676f87 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(103, 111, 135); }
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(225, 13%, 47%); }
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 #676f87
RGB Code | Hex Code | Preview |
---|---|---|
rgb(103, 111, 135, 10%) | #676f871a | |
rgb(103, 111, 135, 20%) | #676f8733 | |
rgb(103, 111, 135, 40%) | #676f874C | |
rgb(103, 111, 135, 60%) | #676f8799 | |
rgb(103, 111, 135, 80%) | #676f87CC | |
rgb(103, 111, 135, 100%) | #676f87FF |
Saturated and desaturated colors of #676f87
HSL Code | Preview |
---|---|
hsl(225, 10%, 47%) | |
hsl(225, 20%, 47%) | |
hsl(225, 40%, 47%) | |
hsl(225, 60%, 47%) | |
hsl(225, 80%, 47%) | |
hsl(225, 100%, 47%) |
#676f87 Color Usage In CSS
body { color: #676f87; } p { color: rgb(103, 111, 135); } header { border-bottom:1px solid #676f87; }