#8dc465 Color
Color Codes | |
---|---|
Hex Code | #8dc465 |
RGB Code | rgb(141, 196, 101) |
HSL Code | hsl(95, 45%, 58%) |
#8dc465 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(141, 196, 101); }
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(95, 45%, 58%); }
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 #8dc465
RGB Code | Hex Code | Preview |
---|---|---|
rgb(141, 196, 101, 10%) | #8dc4651a | |
rgb(141, 196, 101, 20%) | #8dc46533 | |
rgb(141, 196, 101, 40%) | #8dc4654C | |
rgb(141, 196, 101, 60%) | #8dc46599 | |
rgb(141, 196, 101, 80%) | #8dc465CC | |
rgb(141, 196, 101, 100%) | #8dc465FF |
Saturated and desaturated colors of #8dc465
HSL Code | Preview |
---|---|
hsl(95, 10%, 58%) | |
hsl(95, 20%, 58%) | |
hsl(95, 40%, 58%) | |
hsl(95, 60%, 58%) | |
hsl(95, 80%, 58%) | |
hsl(95, 100%, 58%) |
#8dc465 Color Usage In CSS
body { color: #8dc465; } p { color: rgb(141, 196, 101); } header { border-bottom:1px solid #8dc465; }