#50bfca Color
Color Codes | |
---|---|
Hex Code | #50bfca |
RGB Code | rgb(80, 191, 202) |
HSL Code | hsl(185, 54%, 55%) |
#50bfca Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(80, 191, 202); }
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(185, 54%, 55%); }
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 #50bfca
RGB Code | Hex Code | Preview |
---|---|---|
rgb(80, 191, 202, 10%) | #50bfca1a | |
rgb(80, 191, 202, 20%) | #50bfca33 | |
rgb(80, 191, 202, 40%) | #50bfca4C | |
rgb(80, 191, 202, 60%) | #50bfca99 | |
rgb(80, 191, 202, 80%) | #50bfcaCC | |
rgb(80, 191, 202, 100%) | #50bfcaFF |
Saturated and desaturated colors of #50bfca
HSL Code | Preview |
---|---|
hsl(185, 10%, 55%) | |
hsl(185, 20%, 55%) | |
hsl(185, 40%, 55%) | |
hsl(185, 60%, 55%) | |
hsl(185, 80%, 55%) | |
hsl(185, 100%, 55%) |
#50bfca Color Usage In CSS
body { color: #50bfca; } p { color: rgb(80, 191, 202); } header { border-bottom:1px solid #50bfca; }