#527e4b Color
Color Codes | |
---|---|
Hex Code | #527e4b |
RGB Code | rgb(82, 126, 75) |
HSL Code | hsl(112, 25%, 39%) |
#527e4b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(82, 126, 75); }
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(112, 25%, 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 #527e4b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(82, 126, 75, 10%) | #527e4b1a | |
rgb(82, 126, 75, 20%) | #527e4b33 | |
rgb(82, 126, 75, 40%) | #527e4b4C | |
rgb(82, 126, 75, 60%) | #527e4b99 | |
rgb(82, 126, 75, 80%) | #527e4bCC | |
rgb(82, 126, 75, 100%) | #527e4bFF |
Saturated and desaturated colors of #527e4b
HSL Code | Preview |
---|---|
hsl(112, 10%, 39%) | |
hsl(112, 20%, 39%) | |
hsl(112, 40%, 39%) | |
hsl(112, 60%, 39%) | |
hsl(112, 80%, 39%) | |
hsl(112, 100%, 39%) |
#527e4b Color Usage In CSS
body { color: #527e4b; } p { color: rgb(82, 126, 75); } header { border-bottom:1px solid #527e4b; }