#2fccde Color
Color Codes | |
---|---|
Hex Code | #2fccde |
RGB Code | rgb(47, 204, 222) |
HSL Code | hsl(186, 73%, 53%) |
#2fccde Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(47, 204, 222); }
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(186, 73%, 53%); }
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 #2fccde
RGB Code | Hex Code | Preview |
---|---|---|
rgb(47, 204, 222, 10%) | #2fccde1a | |
rgb(47, 204, 222, 20%) | #2fccde33 | |
rgb(47, 204, 222, 40%) | #2fccde4C | |
rgb(47, 204, 222, 60%) | #2fccde99 | |
rgb(47, 204, 222, 80%) | #2fccdeCC | |
rgb(47, 204, 222, 100%) | #2fccdeFF |
Saturated and desaturated colors of #2fccde
HSL Code | Preview |
---|---|
hsl(186, 10%, 53%) | |
hsl(186, 20%, 53%) | |
hsl(186, 40%, 53%) | |
hsl(186, 60%, 53%) | |
hsl(186, 80%, 53%) | |
hsl(186, 100%, 53%) |
#2fccde Color Usage In CSS
body { color: #2fccde; } p { color: rgb(47, 204, 222); } header { border-bottom:1px solid #2fccde; }