#49e149 Color
Color Codes | |
---|---|
Hex Code | #49e149 |
RGB Code | rgb(73, 225, 73) |
HSL Code | hsl(120, 72%, 58%) |
#49e149 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(73, 225, 73); }
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(120, 72%, 58%); }
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 #49e149
RGB Code | Hex Code | Preview |
---|---|---|
rgb(73, 225, 73, 10%) | #49e1491a | |
rgb(73, 225, 73, 20%) | #49e14933 | |
rgb(73, 225, 73, 40%) | #49e1494C | |
rgb(73, 225, 73, 60%) | #49e14999 | |
rgb(73, 225, 73, 80%) | #49e149CC | |
rgb(73, 225, 73, 100%) | #49e149FF |
Saturated and desaturated colors of #49e149
HSL Code | Preview |
---|---|
hsl(120, 10%, 58%) | |
hsl(120, 20%, 58%) | |
hsl(120, 40%, 58%) | |
hsl(120, 60%, 58%) | |
hsl(120, 80%, 58%) | |
hsl(120, 100%, 58%) |
#49e149 Color Usage In CSS
body { color: #49e149; } p { color: rgb(73, 225, 73); } header { border-bottom:1px solid #49e149; }