#537d63 Color
Color Codes | |
---|---|
Hex Code | #537d63 |
RGB Code | rgb(83, 125, 99) |
HSL Code | hsl(143, 20%, 41%) |
#537d63 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(83, 125, 99); }
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(143, 20%, 41%); }
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 #537d63
RGB Code | Hex Code | Preview |
---|---|---|
rgb(83, 125, 99, 10%) | #537d631a | |
rgb(83, 125, 99, 20%) | #537d6333 | |
rgb(83, 125, 99, 40%) | #537d634C | |
rgb(83, 125, 99, 60%) | #537d6399 | |
rgb(83, 125, 99, 80%) | #537d63CC | |
rgb(83, 125, 99, 100%) | #537d63FF |
Saturated and desaturated colors of #537d63
HSL Code | Preview |
---|---|
hsl(143, 10%, 41%) | |
hsl(143, 20%, 41%) | |
hsl(143, 40%, 41%) | |
hsl(143, 60%, 41%) | |
hsl(143, 80%, 41%) | |
hsl(143, 100%, 41%) |
#537d63 Color Usage In CSS
body { color: #537d63; } p { color: rgb(83, 125, 99); } header { border-bottom:1px solid #537d63; }