#884744 Color
Color Codes | |
---|---|
Hex Code | #884744 |
RGB Code | rgb(136, 71, 68) |
HSL Code | hsl(3, 33%, 40%) |
#884744 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(136, 71, 68); }
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(3, 33%, 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 #884744
RGB Code | Hex Code | Preview |
---|---|---|
rgb(136, 71, 68, 10%) | #8847441a | |
rgb(136, 71, 68, 20%) | #88474433 | |
rgb(136, 71, 68, 40%) | #8847444C | |
rgb(136, 71, 68, 60%) | #88474499 | |
rgb(136, 71, 68, 80%) | #884744CC | |
rgb(136, 71, 68, 100%) | #884744FF |
Saturated and desaturated colors of #884744
HSL Code | Preview |
---|---|
hsl(3, 10%, 40%) | |
hsl(3, 20%, 40%) | |
hsl(3, 40%, 40%) | |
hsl(3, 60%, 40%) | |
hsl(3, 80%, 40%) | |
hsl(3, 100%, 40%) |
#884744 Color Usage In CSS
body { color: #884744; } p { color: rgb(136, 71, 68); } header { border-bottom:1px solid #884744; }