#47c6ec Color
Color Codes | |
---|---|
Hex Code | #47c6ec |
RGB Code | rgb(71, 198, 236) |
HSL Code | hsl(194, 81%, 60%) |
#47c6ec Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(71, 198, 236); }
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(194, 81%, 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 #47c6ec
RGB Code | Hex Code | Preview |
---|---|---|
rgb(71, 198, 236, 10%) | #47c6ec1a | |
rgb(71, 198, 236, 20%) | #47c6ec33 | |
rgb(71, 198, 236, 40%) | #47c6ec4C | |
rgb(71, 198, 236, 60%) | #47c6ec99 | |
rgb(71, 198, 236, 80%) | #47c6ecCC | |
rgb(71, 198, 236, 100%) | #47c6ecFF |
Saturated and desaturated colors of #47c6ec
HSL Code | Preview |
---|---|
hsl(194, 10%, 60%) | |
hsl(194, 20%, 60%) | |
hsl(194, 40%, 60%) | |
hsl(194, 60%, 60%) | |
hsl(194, 80%, 60%) | |
hsl(194, 100%, 60%) |
#47c6ec Color Usage In CSS
body { color: #47c6ec; } p { color: rgb(71, 198, 236); } header { border-bottom:1px solid #47c6ec; }