#77489c Color
Color Codes | |
---|---|
Hex Code | #77489c |
RGB Code | rgb(119, 72, 156) |
HSL Code | hsl(274, 37%, 45%) |
#77489c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(119, 72, 156); }
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, 37%, 45%); }
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 #77489c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(119, 72, 156, 10%) | #77489c1a | |
rgb(119, 72, 156, 20%) | #77489c33 | |
rgb(119, 72, 156, 40%) | #77489c4C | |
rgb(119, 72, 156, 60%) | #77489c99 | |
rgb(119, 72, 156, 80%) | #77489cCC | |
rgb(119, 72, 156, 100%) | #77489cFF |
Saturated and desaturated colors of #77489c
HSL Code | Preview |
---|---|
hsl(274, 10%, 45%) | |
hsl(274, 20%, 45%) | |
hsl(274, 40%, 45%) | |
hsl(274, 60%, 45%) | |
hsl(274, 80%, 45%) | |
hsl(274, 100%, 45%) |
#77489c Color Usage In CSS
body { color: #77489c; } p { color: rgb(119, 72, 156); } header { border-bottom:1px solid #77489c; }