#97be6f Color
Color Codes | |
---|---|
Hex Code | #97be6f |
RGB Code | rgb(151, 190, 111) |
HSL Code | hsl(90, 38%, 59%) |
#97be6f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(151, 190, 111); }
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(90, 38%, 59%); }
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 #97be6f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(151, 190, 111, 10%) | #97be6f1a | |
rgb(151, 190, 111, 20%) | #97be6f33 | |
rgb(151, 190, 111, 40%) | #97be6f4C | |
rgb(151, 190, 111, 60%) | #97be6f99 | |
rgb(151, 190, 111, 80%) | #97be6fCC | |
rgb(151, 190, 111, 100%) | #97be6fFF |
Saturated and desaturated colors of #97be6f
HSL Code | Preview |
---|---|
hsl(90, 10%, 59%) | |
hsl(90, 20%, 59%) | |
hsl(90, 40%, 59%) | |
hsl(90, 60%, 59%) | |
hsl(90, 80%, 59%) | |
hsl(90, 100%, 59%) |
#97be6f Color Usage In CSS
body { color: #97be6f; } p { color: rgb(151, 190, 111); } header { border-bottom:1px solid #97be6f; }