#3d5735 Color
Color Codes | |
---|---|
Hex Code | #3d5735 |
RGB Code | rgb(61, 87, 53) |
HSL Code | hsl(106, 24%, 27%) |
#3d5735 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(61, 87, 53); }
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(106, 24%, 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 #3d5735
RGB Code | Hex Code | Preview |
---|---|---|
rgb(61, 87, 53, 10%) | #3d57351a | |
rgb(61, 87, 53, 20%) | #3d573533 | |
rgb(61, 87, 53, 40%) | #3d57354C | |
rgb(61, 87, 53, 60%) | #3d573599 | |
rgb(61, 87, 53, 80%) | #3d5735CC | |
rgb(61, 87, 53, 100%) | #3d5735FF |
Saturated and desaturated colors of #3d5735
HSL Code | Preview |
---|---|
hsl(106, 10%, 27%) | |
hsl(106, 20%, 27%) | |
hsl(106, 40%, 27%) | |
hsl(106, 60%, 27%) | |
hsl(106, 80%, 27%) | |
hsl(106, 100%, 27%) |
#3d5735 Color Usage In CSS
body { color: #3d5735; } p { color: rgb(61, 87, 53); } header { border-bottom:1px solid #3d5735; }