#519770 Color
Color Codes | |
---|---|
Hex Code | #519770 |
RGB Code | rgb(81, 151, 112) |
HSL Code | hsl(147, 30%, 45%) |
#519770 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(81, 151, 112); }
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(147, 30%, 45%); }
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 #519770
RGB Code | Hex Code | Preview |
---|---|---|
rgb(81, 151, 112, 10%) | #5197701a | |
rgb(81, 151, 112, 20%) | #51977033 | |
rgb(81, 151, 112, 40%) | #5197704C | |
rgb(81, 151, 112, 60%) | #51977099 | |
rgb(81, 151, 112, 80%) | #519770CC | |
rgb(81, 151, 112, 100%) | #519770FF |
Saturated and desaturated colors of #519770
HSL Code | Preview |
---|---|
hsl(147, 10%, 45%) | |
hsl(147, 20%, 45%) | |
hsl(147, 40%, 45%) | |
hsl(147, 60%, 45%) | |
hsl(147, 80%, 45%) | |
hsl(147, 100%, 45%) |
#519770 Color Usage In CSS
body { color: #519770; } p { color: rgb(81, 151, 112); } header { border-bottom:1px solid #519770; }