#893f2e Color
Color Codes | |
---|---|
Hex Code | #893f2e |
RGB Code | rgb(137, 63, 46) |
HSL Code | hsl(11, 50%, 36%) |
#893f2e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(137, 63, 46); }
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(11, 50%, 36%); }
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 #893f2e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(137, 63, 46, 10%) | #893f2e1a | |
rgb(137, 63, 46, 20%) | #893f2e33 | |
rgb(137, 63, 46, 40%) | #893f2e4C | |
rgb(137, 63, 46, 60%) | #893f2e99 | |
rgb(137, 63, 46, 80%) | #893f2eCC | |
rgb(137, 63, 46, 100%) | #893f2eFF |
Saturated and desaturated colors of #893f2e
HSL Code | Preview |
---|---|
hsl(11, 10%, 36%) | |
hsl(11, 20%, 36%) | |
hsl(11, 40%, 36%) | |
hsl(11, 60%, 36%) | |
hsl(11, 80%, 36%) | |
hsl(11, 100%, 36%) |
#893f2e Color Usage In CSS
body { color: #893f2e; } p { color: rgb(137, 63, 46); } header { border-bottom:1px solid #893f2e; }