#5b7a2b Color
Color Codes | |
---|---|
Hex Code | #5b7a2b |
RGB Code | rgb(91, 122, 43) |
HSL Code | hsl(84, 48%, 32%) |
#5b7a2b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(91, 122, 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 #5b7a2b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(91, 122, 43, 10%) | #5b7a2b1a | |
rgb(91, 122, 43, 20%) | #5b7a2b33 | |
rgb(91, 122, 43, 40%) | #5b7a2b4C | |
rgb(91, 122, 43, 60%) | #5b7a2b99 | |
rgb(91, 122, 43, 80%) | #5b7a2bCC | |
rgb(91, 122, 43, 100%) | #5b7a2bFF |
Saturated and desaturated colors of #5b7a2b
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%) |
#5b7a2b Color Usage In CSS
body { color: #5b7a2b; } p { color: rgb(91, 122, 43); } header { border-bottom:1px solid #5b7a2b; }