#53d6af Color
Color Codes | |
---|---|
Hex Code | #53d6af |
RGB Code | rgb(83, 214, 175) |
HSL Code | hsl(162, 62%, 58%) |
#53d6af Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(83, 214, 175); }
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(162, 62%, 58%); }
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 #53d6af
RGB Code | Hex Code | Preview |
---|---|---|
rgb(83, 214, 175, 10%) | #53d6af1a | |
rgb(83, 214, 175, 20%) | #53d6af33 | |
rgb(83, 214, 175, 40%) | #53d6af4C | |
rgb(83, 214, 175, 60%) | #53d6af99 | |
rgb(83, 214, 175, 80%) | #53d6afCC | |
rgb(83, 214, 175, 100%) | #53d6afFF |
Saturated and desaturated colors of #53d6af
HSL Code | Preview |
---|---|
hsl(162, 10%, 58%) | |
hsl(162, 20%, 58%) | |
hsl(162, 40%, 58%) | |
hsl(162, 60%, 58%) | |
hsl(162, 80%, 58%) | |
hsl(162, 100%, 58%) |
#53d6af Color Usage In CSS
body { color: #53d6af; } p { color: rgb(83, 214, 175); } header { border-bottom:1px solid #53d6af; }