#14f518 Color
Color Codes | |
---|---|
Hex Code | #14f518 |
RGB Code | rgb(20, 245, 24) |
HSL Code | hsl(121, 92%, 52%) |
#14f518 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(20, 245, 24); }
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(121, 92%, 52%); }
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 #14f518
RGB Code | Hex Code | Preview |
---|---|---|
rgb(20, 245, 24, 10%) | #14f5181a | |
rgb(20, 245, 24, 20%) | #14f51833 | |
rgb(20, 245, 24, 40%) | #14f5184C | |
rgb(20, 245, 24, 60%) | #14f51899 | |
rgb(20, 245, 24, 80%) | #14f518CC | |
rgb(20, 245, 24, 100%) | #14f518FF |
Saturated and desaturated colors of #14f518
HSL Code | Preview |
---|---|
hsl(121, 10%, 52%) | |
hsl(121, 20%, 52%) | |
hsl(121, 40%, 52%) | |
hsl(121, 60%, 52%) | |
hsl(121, 80%, 52%) | |
hsl(121, 100%, 52%) |
#14f518 Color Usage In CSS
body { color: #14f518; } p { color: rgb(20, 245, 24); } header { border-bottom:1px solid #14f518; }