#50cd9e Color
Color Codes | |
---|---|
Hex Code | #50cd9e |
RGB Code | rgb(80, 205, 158) |
HSL Code | hsl(157, 56%, 56%) |
#50cd9e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(80, 205, 158); }
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, 56%, 56%); }
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 #50cd9e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(80, 205, 158, 10%) | #50cd9e1a | |
rgb(80, 205, 158, 20%) | #50cd9e33 | |
rgb(80, 205, 158, 40%) | #50cd9e4C | |
rgb(80, 205, 158, 60%) | #50cd9e99 | |
rgb(80, 205, 158, 80%) | #50cd9eCC | |
rgb(80, 205, 158, 100%) | #50cd9eFF |
Saturated and desaturated colors of #50cd9e
HSL Code | Preview |
---|---|
hsl(157, 10%, 56%) | |
hsl(157, 20%, 56%) | |
hsl(157, 40%, 56%) | |
hsl(157, 60%, 56%) | |
hsl(157, 80%, 56%) | |
hsl(157, 100%, 56%) |
#50cd9e Color Usage In CSS
body { color: #50cd9e; } p { color: rgb(80, 205, 158); } header { border-bottom:1px solid #50cd9e; }