#4ea42a Color
Color Codes | |
---|---|
Hex Code | #4ea42a |
RGB Code | rgb(78, 164, 42) |
HSL Code | hsl(102, 59%, 40%) |
#4ea42a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(78, 164, 42); }
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(102, 59%, 40%); }
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 #4ea42a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(78, 164, 42, 10%) | #4ea42a1a | |
rgb(78, 164, 42, 20%) | #4ea42a33 | |
rgb(78, 164, 42, 40%) | #4ea42a4C | |
rgb(78, 164, 42, 60%) | #4ea42a99 | |
rgb(78, 164, 42, 80%) | #4ea42aCC | |
rgb(78, 164, 42, 100%) | #4ea42aFF |
Saturated and desaturated colors of #4ea42a
HSL Code | Preview |
---|---|
hsl(102, 10%, 40%) | |
hsl(102, 20%, 40%) | |
hsl(102, 40%, 40%) | |
hsl(102, 60%, 40%) | |
hsl(102, 80%, 40%) | |
hsl(102, 100%, 40%) |
#4ea42a Color Usage In CSS
body { color: #4ea42a; } p { color: rgb(78, 164, 42); } header { border-bottom:1px solid #4ea42a; }