#49832a Color
Color Codes | |
---|---|
Hex Code | #49832a |
RGB Code | rgb(73, 131, 42) |
HSL Code | hsl(99, 51%, 34%) |
#49832a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(73, 131, 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(99, 51%, 34%); }
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 #49832a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(73, 131, 42, 10%) | #49832a1a | |
rgb(73, 131, 42, 20%) | #49832a33 | |
rgb(73, 131, 42, 40%) | #49832a4C | |
rgb(73, 131, 42, 60%) | #49832a99 | |
rgb(73, 131, 42, 80%) | #49832aCC | |
rgb(73, 131, 42, 100%) | #49832aFF |
Saturated and desaturated colors of #49832a
HSL Code | Preview |
---|---|
hsl(99, 10%, 34%) | |
hsl(99, 20%, 34%) | |
hsl(99, 40%, 34%) | |
hsl(99, 60%, 34%) | |
hsl(99, 80%, 34%) | |
hsl(99, 100%, 34%) |
#49832a Color Usage In CSS
body { color: #49832a; } p { color: rgb(73, 131, 42); } header { border-bottom:1px solid #49832a; }