#989c60 Color
Color Codes | |
---|---|
Hex Code | #989c60 |
RGB Code | rgb(152, 156, 96) |
HSL Code | hsl(64, 24%, 49%) |
#989c60 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(152, 156, 96); }
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(64, 24%, 49%); }
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 #989c60
RGB Code | Hex Code | Preview |
---|---|---|
rgb(152, 156, 96, 10%) | #989c601a | |
rgb(152, 156, 96, 20%) | #989c6033 | |
rgb(152, 156, 96, 40%) | #989c604C | |
rgb(152, 156, 96, 60%) | #989c6099 | |
rgb(152, 156, 96, 80%) | #989c60CC | |
rgb(152, 156, 96, 100%) | #989c60FF |
Saturated and desaturated colors of #989c60
HSL Code | Preview |
---|---|
hsl(64, 10%, 49%) | |
hsl(64, 20%, 49%) | |
hsl(64, 40%, 49%) | |
hsl(64, 60%, 49%) | |
hsl(64, 80%, 49%) | |
hsl(64, 100%, 49%) |
#989c60 Color Usage In CSS
body { color: #989c60; } p { color: rgb(152, 156, 96); } header { border-bottom:1px solid #989c60; }