#61b77f Color
Color Codes | |
---|---|
Hex Code | #61b77f |
RGB Code | rgb(97, 183, 127) |
HSL Code | hsl(141, 37%, 55%) |
#61b77f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(97, 183, 127); }
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(141, 37%, 55%); }
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 #61b77f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(97, 183, 127, 10%) | #61b77f1a | |
rgb(97, 183, 127, 20%) | #61b77f33 | |
rgb(97, 183, 127, 40%) | #61b77f4C | |
rgb(97, 183, 127, 60%) | #61b77f99 | |
rgb(97, 183, 127, 80%) | #61b77fCC | |
rgb(97, 183, 127, 100%) | #61b77fFF |
Saturated and desaturated colors of #61b77f
HSL Code | Preview |
---|---|
hsl(141, 10%, 55%) | |
hsl(141, 20%, 55%) | |
hsl(141, 40%, 55%) | |
hsl(141, 60%, 55%) | |
hsl(141, 80%, 55%) | |
hsl(141, 100%, 55%) |
#61b77f Color Usage In CSS
body { color: #61b77f; } p { color: rgb(97, 183, 127); } header { border-bottom:1px solid #61b77f; }