#4aa72a Color
Color Codes | |
---|---|
Hex Code | #4aa72a |
RGB Code | rgb(74, 167, 42) |
HSL Code | hsl(105, 60%, 41%) |
#4aa72a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(74, 167, 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(105, 60%, 41%); }
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 #4aa72a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(74, 167, 42, 10%) | #4aa72a1a | |
rgb(74, 167, 42, 20%) | #4aa72a33 | |
rgb(74, 167, 42, 40%) | #4aa72a4C | |
rgb(74, 167, 42, 60%) | #4aa72a99 | |
rgb(74, 167, 42, 80%) | #4aa72aCC | |
rgb(74, 167, 42, 100%) | #4aa72aFF |
Saturated and desaturated colors of #4aa72a
HSL Code | Preview |
---|---|
hsl(105, 10%, 41%) | |
hsl(105, 20%, 41%) | |
hsl(105, 40%, 41%) | |
hsl(105, 60%, 41%) | |
hsl(105, 80%, 41%) | |
hsl(105, 100%, 41%) |
#4aa72a Color Usage In CSS
body { color: #4aa72a; } p { color: rgb(74, 167, 42); } header { border-bottom:1px solid #4aa72a; }