#77878b Color
Color Codes | |
---|---|
Hex Code | #77878b |
RGB Code | rgb(119, 135, 139) |
HSL Code | hsl(192, 8%, 51%) |
#77878b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(119, 135, 139); }
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(192, 8%, 51%); }
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 #77878b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(119, 135, 139, 10%) | #77878b1a | |
rgb(119, 135, 139, 20%) | #77878b33 | |
rgb(119, 135, 139, 40%) | #77878b4C | |
rgb(119, 135, 139, 60%) | #77878b99 | |
rgb(119, 135, 139, 80%) | #77878bCC | |
rgb(119, 135, 139, 100%) | #77878bFF |
Saturated and desaturated colors of #77878b
HSL Code | Preview |
---|---|
hsl(192, 10%, 51%) | |
hsl(192, 20%, 51%) | |
hsl(192, 40%, 51%) | |
hsl(192, 60%, 51%) | |
hsl(192, 80%, 51%) | |
hsl(192, 100%, 51%) |
#77878b Color Usage In CSS
body { color: #77878b; } p { color: rgb(119, 135, 139); } header { border-bottom:1px solid #77878b; }