#647766 Color
Color Codes | |
---|---|
Hex Code | #647766 |
RGB Code | rgb(100, 119, 102) |
HSL Code | hsl(126, 9%, 43%) |
#647766 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(100, 119, 102); }
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(126, 9%, 43%); }
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 #647766
RGB Code | Hex Code | Preview |
---|---|---|
rgb(100, 119, 102, 10%) | #6477661a | |
rgb(100, 119, 102, 20%) | #64776633 | |
rgb(100, 119, 102, 40%) | #6477664C | |
rgb(100, 119, 102, 60%) | #64776699 | |
rgb(100, 119, 102, 80%) | #647766CC | |
rgb(100, 119, 102, 100%) | #647766FF |
Saturated and desaturated colors of #647766
HSL Code | Preview |
---|---|
hsl(126, 10%, 43%) | |
hsl(126, 20%, 43%) | |
hsl(126, 40%, 43%) | |
hsl(126, 60%, 43%) | |
hsl(126, 80%, 43%) | |
hsl(126, 100%, 43%) |
#647766 Color Usage In CSS
body { color: #647766; } p { color: rgb(100, 119, 102); } header { border-bottom:1px solid #647766; }