#761620 Color
Color Codes | |
---|---|
Hex Code | #761620 |
RGB Code | rgb(118, 22, 32) |
HSL Code | hsl(354, 69%, 27%) |
#761620 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(118, 22, 32); }
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(354, 69%, 27%); }
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 #761620
RGB Code | Hex Code | Preview |
---|---|---|
rgb(118, 22, 32, 10%) | #7616201a | |
rgb(118, 22, 32, 20%) | #76162033 | |
rgb(118, 22, 32, 40%) | #7616204C | |
rgb(118, 22, 32, 60%) | #76162099 | |
rgb(118, 22, 32, 80%) | #761620CC | |
rgb(118, 22, 32, 100%) | #761620FF |
Saturated and desaturated colors of #761620
HSL Code | Preview |
---|---|
hsl(354, 10%, 27%) | |
hsl(354, 20%, 27%) | |
hsl(354, 40%, 27%) | |
hsl(354, 60%, 27%) | |
hsl(354, 80%, 27%) | |
hsl(354, 100%, 27%) |
#761620 Color Usage In CSS
body { color: #761620; } p { color: rgb(118, 22, 32); } header { border-bottom:1px solid #761620; }