#53dfaa Color
Color Codes | |
---|---|
Hex Code | #53dfaa |
RGB Code | rgb(83, 223, 170) |
HSL Code | hsl(157, 69%, 60%) |
#53dfaa Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(83, 223, 170); }
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(157, 69%, 60%); }
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 #53dfaa
RGB Code | Hex Code | Preview |
---|---|---|
rgb(83, 223, 170, 10%) | #53dfaa1a | |
rgb(83, 223, 170, 20%) | #53dfaa33 | |
rgb(83, 223, 170, 40%) | #53dfaa4C | |
rgb(83, 223, 170, 60%) | #53dfaa99 | |
rgb(83, 223, 170, 80%) | #53dfaaCC | |
rgb(83, 223, 170, 100%) | #53dfaaFF |
Saturated and desaturated colors of #53dfaa
HSL Code | Preview |
---|---|
hsl(157, 10%, 60%) | |
hsl(157, 20%, 60%) | |
hsl(157, 40%, 60%) | |
hsl(157, 60%, 60%) | |
hsl(157, 80%, 60%) | |
hsl(157, 100%, 60%) |
#53dfaa Color Usage In CSS
body { color: #53dfaa; } p { color: rgb(83, 223, 170); } header { border-bottom:1px solid #53dfaa; }