#76c00d Color
Color Codes | |
---|---|
Hex Code | #76c00d |
RGB Code | rgb(118, 192, 13) |
HSL Code | hsl(85, 87%, 40%) |
#76c00d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(118, 192, 13); }
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(85, 87%, 40%); }
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 #76c00d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(118, 192, 13, 10%) | #76c00d1a | |
rgb(118, 192, 13, 20%) | #76c00d33 | |
rgb(118, 192, 13, 40%) | #76c00d4C | |
rgb(118, 192, 13, 60%) | #76c00d99 | |
rgb(118, 192, 13, 80%) | #76c00dCC | |
rgb(118, 192, 13, 100%) | #76c00dFF |
Saturated and desaturated colors of #76c00d
HSL Code | Preview |
---|---|
hsl(85, 10%, 40%) | |
hsl(85, 20%, 40%) | |
hsl(85, 40%, 40%) | |
hsl(85, 60%, 40%) | |
hsl(85, 80%, 40%) | |
hsl(85, 100%, 40%) |
#76c00d Color Usage In CSS
body { color: #76c00d; } p { color: rgb(118, 192, 13); } header { border-bottom:1px solid #76c00d; }