#5a792b Color
Color Codes | |
---|---|
Hex Code | #5a792b |
RGB Code | rgb(90, 121, 43) |
HSL Code | hsl(84, 48%, 32%) |
#5a792b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(90, 121, 43); }
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(84, 48%, 32%); }
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 #5a792b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(90, 121, 43, 10%) | #5a792b1a | |
rgb(90, 121, 43, 20%) | #5a792b33 | |
rgb(90, 121, 43, 40%) | #5a792b4C | |
rgb(90, 121, 43, 60%) | #5a792b99 | |
rgb(90, 121, 43, 80%) | #5a792bCC | |
rgb(90, 121, 43, 100%) | #5a792bFF |
Saturated and desaturated colors of #5a792b
HSL Code | Preview |
---|---|
hsl(84, 10%, 32%) | |
hsl(84, 20%, 32%) | |
hsl(84, 40%, 32%) | |
hsl(84, 60%, 32%) | |
hsl(84, 80%, 32%) | |
hsl(84, 100%, 32%) |
#5a792b Color Usage In CSS
body { color: #5a792b; } p { color: rgb(90, 121, 43); } header { border-bottom:1px solid #5a792b; }