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