#50cdec Color
Color Codes | |
---|---|
Hex Code | #50cdec |
RGB Code | rgb(80, 205, 236) |
HSL Code | hsl(192, 80%, 62%) |
#50cdec Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(80, 205, 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(192, 80%, 62%); }
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 #50cdec
RGB Code | Hex Code | Preview |
---|---|---|
rgb(80, 205, 236, 10%) | #50cdec1a | |
rgb(80, 205, 236, 20%) | #50cdec33 | |
rgb(80, 205, 236, 40%) | #50cdec4C | |
rgb(80, 205, 236, 60%) | #50cdec99 | |
rgb(80, 205, 236, 80%) | #50cdecCC | |
rgb(80, 205, 236, 100%) | #50cdecFF |
Saturated and desaturated colors of #50cdec
HSL Code | Preview |
---|---|
hsl(192, 10%, 62%) | |
hsl(192, 20%, 62%) | |
hsl(192, 40%, 62%) | |
hsl(192, 60%, 62%) | |
hsl(192, 80%, 62%) | |
hsl(192, 100%, 62%) |
#50cdec Color Usage In CSS
body { color: #50cdec; } p { color: rgb(80, 205, 236); } header { border-bottom:1px solid #50cdec; }