#8dd94c Color
Color Codes | |
---|---|
Hex Code | #8dd94c |
RGB Code | rgb(141, 217, 76) |
HSL Code | hsl(92, 65%, 57%) |
#8dd94c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(141, 217, 76); }
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(92, 65%, 57%); }
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 #8dd94c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(141, 217, 76, 10%) | #8dd94c1a | |
rgb(141, 217, 76, 20%) | #8dd94c33 | |
rgb(141, 217, 76, 40%) | #8dd94c4C | |
rgb(141, 217, 76, 60%) | #8dd94c99 | |
rgb(141, 217, 76, 80%) | #8dd94cCC | |
rgb(141, 217, 76, 100%) | #8dd94cFF |
Saturated and desaturated colors of #8dd94c
HSL Code | Preview |
---|---|
hsl(92, 10%, 57%) | |
hsl(92, 20%, 57%) | |
hsl(92, 40%, 57%) | |
hsl(92, 60%, 57%) | |
hsl(92, 80%, 57%) | |
hsl(92, 100%, 57%) |
#8dd94c Color Usage In CSS
body { color: #8dd94c; } p { color: rgb(141, 217, 76); } header { border-bottom:1px solid #8dd94c; }