#844a4c Color
Color Codes | |
---|---|
Hex Code | #844a4c |
RGB Code | rgb(132, 74, 76) |
HSL Code | hsl(358, 28%, 40%) |
#844a4c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(132, 74, 76); }
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(358, 28%, 40%); }
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 #844a4c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(132, 74, 76, 10%) | #844a4c1a | |
rgb(132, 74, 76, 20%) | #844a4c33 | |
rgb(132, 74, 76, 40%) | #844a4c4C | |
rgb(132, 74, 76, 60%) | #844a4c99 | |
rgb(132, 74, 76, 80%) | #844a4cCC | |
rgb(132, 74, 76, 100%) | #844a4cFF |
Saturated and desaturated colors of #844a4c
HSL Code | Preview |
---|---|
hsl(358, 10%, 40%) | |
hsl(358, 20%, 40%) | |
hsl(358, 40%, 40%) | |
hsl(358, 60%, 40%) | |
hsl(358, 80%, 40%) | |
hsl(358, 100%, 40%) |
#844a4c Color Usage In CSS
body { color: #844a4c; } p { color: rgb(132, 74, 76); } header { border-bottom:1px solid #844a4c; }