#724d86 Color
Color Codes | |
---|---|
Hex Code | #724d86 |
RGB Code | rgb(114, 77, 134) |
HSL Code | hsl(279, 27%, 41%) |
#724d86 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(114, 77, 134); }
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(279, 27%, 41%); }
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 #724d86
RGB Code | Hex Code | Preview |
---|---|---|
rgb(114, 77, 134, 10%) | #724d861a | |
rgb(114, 77, 134, 20%) | #724d8633 | |
rgb(114, 77, 134, 40%) | #724d864C | |
rgb(114, 77, 134, 60%) | #724d8699 | |
rgb(114, 77, 134, 80%) | #724d86CC | |
rgb(114, 77, 134, 100%) | #724d86FF |
Saturated and desaturated colors of #724d86
HSL Code | Preview |
---|---|
hsl(279, 10%, 41%) | |
hsl(279, 20%, 41%) | |
hsl(279, 40%, 41%) | |
hsl(279, 60%, 41%) | |
hsl(279, 80%, 41%) | |
hsl(279, 100%, 41%) |
#724d86 Color Usage In CSS
body { color: #724d86; } p { color: rgb(114, 77, 134); } header { border-bottom:1px solid #724d86; }