#50dcbf Color
Color Codes | |
---|---|
Hex Code | #50dcbf |
RGB Code | rgb(80, 220, 191) |
HSL Code | hsl(168, 67%, 59%) |
#50dcbf Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(80, 220, 191); }
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(168, 67%, 59%); }
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 #50dcbf
RGB Code | Hex Code | Preview |
---|---|---|
rgb(80, 220, 191, 10%) | #50dcbf1a | |
rgb(80, 220, 191, 20%) | #50dcbf33 | |
rgb(80, 220, 191, 40%) | #50dcbf4C | |
rgb(80, 220, 191, 60%) | #50dcbf99 | |
rgb(80, 220, 191, 80%) | #50dcbfCC | |
rgb(80, 220, 191, 100%) | #50dcbfFF |
Saturated and desaturated colors of #50dcbf
HSL Code | Preview |
---|---|
hsl(168, 10%, 59%) | |
hsl(168, 20%, 59%) | |
hsl(168, 40%, 59%) | |
hsl(168, 60%, 59%) | |
hsl(168, 80%, 59%) | |
hsl(168, 100%, 59%) |
#50dcbf Color Usage In CSS
body { color: #50dcbf; } p { color: rgb(80, 220, 191); } header { border-bottom:1px solid #50dcbf; }