#777f89 Color
Color Codes | |
---|---|
Hex Code | #777f89 |
RGB Code | rgb(119, 127, 137) |
HSL Code | hsl(213, 7%, 50%) |
#777f89 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(119, 127, 137); }
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(213, 7%, 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 #777f89
RGB Code | Hex Code | Preview |
---|---|---|
rgb(119, 127, 137, 10%) | #777f891a | |
rgb(119, 127, 137, 20%) | #777f8933 | |
rgb(119, 127, 137, 40%) | #777f894C | |
rgb(119, 127, 137, 60%) | #777f8999 | |
rgb(119, 127, 137, 80%) | #777f89CC | |
rgb(119, 127, 137, 100%) | #777f89FF |
Saturated and desaturated colors of #777f89
HSL Code | Preview |
---|---|
hsl(213, 10%, 50%) | |
hsl(213, 20%, 50%) | |
hsl(213, 40%, 50%) | |
hsl(213, 60%, 50%) | |
hsl(213, 80%, 50%) | |
hsl(213, 100%, 50%) |
#777f89 Color Usage In CSS
body { color: #777f89; } p { color: rgb(119, 127, 137); } header { border-bottom:1px solid #777f89; }