#50f134 Color
Color Codes | |
---|---|
Hex Code | #50f134 |
RGB Code | rgb(80, 241, 52) |
HSL Code | hsl(111, 87%, 57%) |
#50f134 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(80, 241, 52); }
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(111, 87%, 57%); }
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 #50f134
RGB Code | Hex Code | Preview |
---|---|---|
rgb(80, 241, 52, 10%) | #50f1341a | |
rgb(80, 241, 52, 20%) | #50f13433 | |
rgb(80, 241, 52, 40%) | #50f1344C | |
rgb(80, 241, 52, 60%) | #50f13499 | |
rgb(80, 241, 52, 80%) | #50f134CC | |
rgb(80, 241, 52, 100%) | #50f134FF |
Saturated and desaturated colors of #50f134
HSL Code | Preview |
---|---|
hsl(111, 10%, 57%) | |
hsl(111, 20%, 57%) | |
hsl(111, 40%, 57%) | |
hsl(111, 60%, 57%) | |
hsl(111, 80%, 57%) | |
hsl(111, 100%, 57%) |
#50f134 Color Usage In CSS
body { color: #50f134; } p { color: rgb(80, 241, 52); } header { border-bottom:1px solid #50f134; }