#a3d765 Color
Color Codes | |
---|---|
Hex Code | #a3d765 |
RGB Code | rgb(163, 215, 101) |
HSL Code | hsl(87, 59%, 62%) |
#a3d765 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(163, 215, 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(87, 59%, 62%); }
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 #a3d765
RGB Code | Hex Code | Preview |
---|---|---|
rgb(163, 215, 101, 10%) | #a3d7651a | |
rgb(163, 215, 101, 20%) | #a3d76533 | |
rgb(163, 215, 101, 40%) | #a3d7654C | |
rgb(163, 215, 101, 60%) | #a3d76599 | |
rgb(163, 215, 101, 80%) | #a3d765CC | |
rgb(163, 215, 101, 100%) | #a3d765FF |
Saturated and desaturated colors of #a3d765
HSL Code | Preview |
---|---|
hsl(87, 10%, 62%) | |
hsl(87, 20%, 62%) | |
hsl(87, 40%, 62%) | |
hsl(87, 60%, 62%) | |
hsl(87, 80%, 62%) | |
hsl(87, 100%, 62%) |
#a3d765 Color Usage In CSS
body { color: #a3d765; } p { color: rgb(163, 215, 101); } header { border-bottom:1px solid #a3d765; }