#956e39 Color
Color Codes | |
---|---|
Hex Code | #956e39 |
RGB Code | rgb(149, 110, 57) |
HSL Code | hsl(35, 45%, 40%) |
#956e39 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(149, 110, 57); }
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(35, 45%, 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 #956e39
RGB Code | Hex Code | Preview |
---|---|---|
rgb(149, 110, 57, 10%) | #956e391a | |
rgb(149, 110, 57, 20%) | #956e3933 | |
rgb(149, 110, 57, 40%) | #956e394C | |
rgb(149, 110, 57, 60%) | #956e3999 | |
rgb(149, 110, 57, 80%) | #956e39CC | |
rgb(149, 110, 57, 100%) | #956e39FF |
Saturated and desaturated colors of #956e39
HSL Code | Preview |
---|---|
hsl(35, 10%, 40%) | |
hsl(35, 20%, 40%) | |
hsl(35, 40%, 40%) | |
hsl(35, 60%, 40%) | |
hsl(35, 80%, 40%) | |
hsl(35, 100%, 40%) |
#956e39 Color Usage In CSS
body { color: #956e39; } p { color: rgb(149, 110, 57); } header { border-bottom:1px solid #956e39; }