#58672d Color
Color Codes | |
---|---|
Hex Code | #58672d |
RGB Code | rgb(88, 103, 45) |
HSL Code | hsl(76, 39%, 29%) |
#58672d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(88, 103, 45); }
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(76, 39%, 29%); }
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 #58672d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(88, 103, 45, 10%) | #58672d1a | |
rgb(88, 103, 45, 20%) | #58672d33 | |
rgb(88, 103, 45, 40%) | #58672d4C | |
rgb(88, 103, 45, 60%) | #58672d99 | |
rgb(88, 103, 45, 80%) | #58672dCC | |
rgb(88, 103, 45, 100%) | #58672dFF |
Saturated and desaturated colors of #58672d
HSL Code | Preview |
---|---|
hsl(76, 10%, 29%) | |
hsl(76, 20%, 29%) | |
hsl(76, 40%, 29%) | |
hsl(76, 60%, 29%) | |
hsl(76, 80%, 29%) | |
hsl(76, 100%, 29%) |
#58672d Color Usage In CSS
body { color: #58672d; } p { color: rgb(88, 103, 45); } header { border-bottom:1px solid #58672d; }