#777384 Color
Color Codes | |
---|---|
Hex Code | #777384 |
RGB Code | rgb(119, 115, 132) |
HSL Code | hsl(254, 7%, 48%) |
#777384 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(119, 115, 132); }
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(254, 7%, 48%); }
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 #777384
RGB Code | Hex Code | Preview |
---|---|---|
rgb(119, 115, 132, 10%) | #7773841a | |
rgb(119, 115, 132, 20%) | #77738433 | |
rgb(119, 115, 132, 40%) | #7773844C | |
rgb(119, 115, 132, 60%) | #77738499 | |
rgb(119, 115, 132, 80%) | #777384CC | |
rgb(119, 115, 132, 100%) | #777384FF |
Saturated and desaturated colors of #777384
HSL Code | Preview |
---|---|
hsl(254, 10%, 48%) | |
hsl(254, 20%, 48%) | |
hsl(254, 40%, 48%) | |
hsl(254, 60%, 48%) | |
hsl(254, 80%, 48%) | |
hsl(254, 100%, 48%) |
#777384 Color Usage In CSS
body { color: #777384; } p { color: rgb(119, 115, 132); } header { border-bottom:1px solid #777384; }