#7b529b Color
Color Codes | |
---|---|
Hex Code | #7b529b |
RGB Code | rgb(123, 82, 155) |
HSL Code | hsl(274, 31%, 46%) |
#7b529b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(123, 82, 155); }
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(274, 31%, 46%); }
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 #7b529b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(123, 82, 155, 10%) | #7b529b1a | |
rgb(123, 82, 155, 20%) | #7b529b33 | |
rgb(123, 82, 155, 40%) | #7b529b4C | |
rgb(123, 82, 155, 60%) | #7b529b99 | |
rgb(123, 82, 155, 80%) | #7b529bCC | |
rgb(123, 82, 155, 100%) | #7b529bFF |
Saturated and desaturated colors of #7b529b
HSL Code | Preview |
---|---|
hsl(274, 10%, 46%) | |
hsl(274, 20%, 46%) | |
hsl(274, 40%, 46%) | |
hsl(274, 60%, 46%) | |
hsl(274, 80%, 46%) | |
hsl(274, 100%, 46%) |
#7b529b Color Usage In CSS
body { color: #7b529b; } p { color: rgb(123, 82, 155); } header { border-bottom:1px solid #7b529b; }