#76a96a Color
Color Codes | |
---|---|
Hex Code | #76a96a |
RGB Code | rgb(118, 169, 106) |
HSL Code | hsl(109, 27%, 54%) |
#76a96a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(118, 169, 106); }
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(109, 27%, 54%); }
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 #76a96a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(118, 169, 106, 10%) | #76a96a1a | |
rgb(118, 169, 106, 20%) | #76a96a33 | |
rgb(118, 169, 106, 40%) | #76a96a4C | |
rgb(118, 169, 106, 60%) | #76a96a99 | |
rgb(118, 169, 106, 80%) | #76a96aCC | |
rgb(118, 169, 106, 100%) | #76a96aFF |
Saturated and desaturated colors of #76a96a
HSL Code | Preview |
---|---|
hsl(109, 10%, 54%) | |
hsl(109, 20%, 54%) | |
hsl(109, 40%, 54%) | |
hsl(109, 60%, 54%) | |
hsl(109, 80%, 54%) | |
hsl(109, 100%, 54%) |
#76a96a Color Usage In CSS
body { color: #76a96a; } p { color: rgb(118, 169, 106); } header { border-bottom:1px solid #76a96a; }