#52c79e Color
Color Codes | |
---|---|
Hex Code | #52c79e |
RGB Code | rgb(82, 199, 158) |
HSL Code | hsl(159, 51%, 55%) |
#52c79e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(82, 199, 158); }
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(159, 51%, 55%); }
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 #52c79e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(82, 199, 158, 10%) | #52c79e1a | |
rgb(82, 199, 158, 20%) | #52c79e33 | |
rgb(82, 199, 158, 40%) | #52c79e4C | |
rgb(82, 199, 158, 60%) | #52c79e99 | |
rgb(82, 199, 158, 80%) | #52c79eCC | |
rgb(82, 199, 158, 100%) | #52c79eFF |
Saturated and desaturated colors of #52c79e
HSL Code | Preview |
---|---|
hsl(159, 10%, 55%) | |
hsl(159, 20%, 55%) | |
hsl(159, 40%, 55%) | |
hsl(159, 60%, 55%) | |
hsl(159, 80%, 55%) | |
hsl(159, 100%, 55%) |
#52c79e Color Usage In CSS
body { color: #52c79e; } p { color: rgb(82, 199, 158); } header { border-bottom:1px solid #52c79e; }