#773380 Color
Color Codes | |
---|---|
Hex Code | #773380 |
RGB Code | rgb(119, 51, 128) |
HSL Code | hsl(293, 43%, 35%) |
#773380 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(119, 51, 128); }
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(293, 43%, 35%); }
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 #773380
RGB Code | Hex Code | Preview |
---|---|---|
rgb(119, 51, 128, 10%) | #7733801a | |
rgb(119, 51, 128, 20%) | #77338033 | |
rgb(119, 51, 128, 40%) | #7733804C | |
rgb(119, 51, 128, 60%) | #77338099 | |
rgb(119, 51, 128, 80%) | #773380CC | |
rgb(119, 51, 128, 100%) | #773380FF |
Saturated and desaturated colors of #773380
HSL Code | Preview |
---|---|
hsl(293, 10%, 35%) | |
hsl(293, 20%, 35%) | |
hsl(293, 40%, 35%) | |
hsl(293, 60%, 35%) | |
hsl(293, 80%, 35%) | |
hsl(293, 100%, 35%) |
#773380 Color Usage In CSS
body { color: #773380; } p { color: rgb(119, 51, 128); } header { border-bottom:1px solid #773380; }