#a3d84a Color
Color Codes | |
---|---|
Hex Code | #a3d84a |
RGB Code | rgb(163, 216, 74) |
HSL Code | hsl(82, 65%, 57%) |
#a3d84a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(163, 216, 74); }
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(82, 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 #a3d84a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(163, 216, 74, 10%) | #a3d84a1a | |
rgb(163, 216, 74, 20%) | #a3d84a33 | |
rgb(163, 216, 74, 40%) | #a3d84a4C | |
rgb(163, 216, 74, 60%) | #a3d84a99 | |
rgb(163, 216, 74, 80%) | #a3d84aCC | |
rgb(163, 216, 74, 100%) | #a3d84aFF |
Saturated and desaturated colors of #a3d84a
HSL Code | Preview |
---|---|
hsl(82, 10%, 57%) | |
hsl(82, 20%, 57%) | |
hsl(82, 40%, 57%) | |
hsl(82, 60%, 57%) | |
hsl(82, 80%, 57%) | |
hsl(82, 100%, 57%) |
#a3d84a Color Usage In CSS
body { color: #a3d84a; } p { color: rgb(163, 216, 74); } header { border-bottom:1px solid #a3d84a; }