#11f50c Color
Color Codes | |
---|---|
Hex Code | #11f50c |
RGB Code | rgb(17, 245, 12) |
HSL Code | hsl(119, 92%, 50%) |
#11f50c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(17, 245, 12); }
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(119, 92%, 50%); }
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 #11f50c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(17, 245, 12, 10%) | #11f50c1a | |
rgb(17, 245, 12, 20%) | #11f50c33 | |
rgb(17, 245, 12, 40%) | #11f50c4C | |
rgb(17, 245, 12, 60%) | #11f50c99 | |
rgb(17, 245, 12, 80%) | #11f50cCC | |
rgb(17, 245, 12, 100%) | #11f50cFF |
Saturated and desaturated colors of #11f50c
HSL Code | Preview |
---|---|
hsl(119, 10%, 50%) | |
hsl(119, 20%, 50%) | |
hsl(119, 40%, 50%) | |
hsl(119, 60%, 50%) | |
hsl(119, 80%, 50%) | |
hsl(119, 100%, 50%) |
#11f50c Color Usage In CSS
body { color: #11f50c; } p { color: rgb(17, 245, 12); } header { border-bottom:1px solid #11f50c; }