#773550 Color
Color Codes | |
---|---|
Hex Code | #773550 |
RGB Code | rgb(119, 53, 80) |
HSL Code | hsl(335, 38%, 34%) |
#773550 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(119, 53, 80); }
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(335, 38%, 34%); }
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 #773550
RGB Code | Hex Code | Preview |
---|---|---|
rgb(119, 53, 80, 10%) | #7735501a | |
rgb(119, 53, 80, 20%) | #77355033 | |
rgb(119, 53, 80, 40%) | #7735504C | |
rgb(119, 53, 80, 60%) | #77355099 | |
rgb(119, 53, 80, 80%) | #773550CC | |
rgb(119, 53, 80, 100%) | #773550FF |
Saturated and desaturated colors of #773550
HSL Code | Preview |
---|---|
hsl(335, 10%, 34%) | |
hsl(335, 20%, 34%) | |
hsl(335, 40%, 34%) | |
hsl(335, 60%, 34%) | |
hsl(335, 80%, 34%) | |
hsl(335, 100%, 34%) |
#773550 Color Usage In CSS
body { color: #773550; } p { color: rgb(119, 53, 80); } header { border-bottom:1px solid #773550; }