#558741 Color
Color Codes | |
---|---|
Hex Code | #558741 |
RGB Code | rgb(85, 135, 65) |
HSL Code | hsl(103, 35%, 39%) |
#558741 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(85, 135, 65); }
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(103, 35%, 39%); }
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 #558741
RGB Code | Hex Code | Preview |
---|---|---|
rgb(85, 135, 65, 10%) | #5587411a | |
rgb(85, 135, 65, 20%) | #55874133 | |
rgb(85, 135, 65, 40%) | #5587414C | |
rgb(85, 135, 65, 60%) | #55874199 | |
rgb(85, 135, 65, 80%) | #558741CC | |
rgb(85, 135, 65, 100%) | #558741FF |
Saturated and desaturated colors of #558741
HSL Code | Preview |
---|---|
hsl(103, 10%, 39%) | |
hsl(103, 20%, 39%) | |
hsl(103, 40%, 39%) | |
hsl(103, 60%, 39%) | |
hsl(103, 80%, 39%) | |
hsl(103, 100%, 39%) |
#558741 Color Usage In CSS
body { color: #558741; } p { color: rgb(85, 135, 65); } header { border-bottom:1px solid #558741; }