#772738 Color
Color Codes | |
---|---|
Hex Code | #772738 |
RGB Code | rgb(119, 39, 56) |
HSL Code | hsl(347, 51%, 31%) |
#772738 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(119, 39, 56); }
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(347, 51%, 31%); }
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 #772738
RGB Code | Hex Code | Preview |
---|---|---|
rgb(119, 39, 56, 10%) | #7727381a | |
rgb(119, 39, 56, 20%) | #77273833 | |
rgb(119, 39, 56, 40%) | #7727384C | |
rgb(119, 39, 56, 60%) | #77273899 | |
rgb(119, 39, 56, 80%) | #772738CC | |
rgb(119, 39, 56, 100%) | #772738FF |
Saturated and desaturated colors of #772738
HSL Code | Preview |
---|---|
hsl(347, 10%, 31%) | |
hsl(347, 20%, 31%) | |
hsl(347, 40%, 31%) | |
hsl(347, 60%, 31%) | |
hsl(347, 80%, 31%) | |
hsl(347, 100%, 31%) |
#772738 Color Usage In CSS
body { color: #772738; } p { color: rgb(119, 39, 56); } header { border-bottom:1px solid #772738; }