#55a53a Color
Color Codes | |
---|---|
Hex Code | #55a53a |
RGB Code | rgb(85, 165, 58) |
HSL Code | hsl(105, 48%, 44%) |
#55a53a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(85, 165, 58); }
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, 48%, 44%); }
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 #55a53a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(85, 165, 58, 10%) | #55a53a1a | |
rgb(85, 165, 58, 20%) | #55a53a33 | |
rgb(85, 165, 58, 40%) | #55a53a4C | |
rgb(85, 165, 58, 60%) | #55a53a99 | |
rgb(85, 165, 58, 80%) | #55a53aCC | |
rgb(85, 165, 58, 100%) | #55a53aFF |
Saturated and desaturated colors of #55a53a
HSL Code | Preview |
---|---|
hsl(105, 10%, 44%) | |
hsl(105, 20%, 44%) | |
hsl(105, 40%, 44%) | |
hsl(105, 60%, 44%) | |
hsl(105, 80%, 44%) | |
hsl(105, 100%, 44%) |
#55a53a Color Usage In CSS
body { color: #55a53a; } p { color: rgb(85, 165, 58); } header { border-bottom:1px solid #55a53a; }