#a2ec68 Color
Color Codes | |
---|---|
Hex Code | #a2ec68 |
RGB Code | rgb(162, 236, 104) |
HSL Code | hsl(94, 78%, 67%) |
#a2ec68 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(162, 236, 104); }
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(94, 78%, 67%); }
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 #a2ec68
RGB Code | Hex Code | Preview |
---|---|---|
rgb(162, 236, 104, 10%) | #a2ec681a | |
rgb(162, 236, 104, 20%) | #a2ec6833 | |
rgb(162, 236, 104, 40%) | #a2ec684C | |
rgb(162, 236, 104, 60%) | #a2ec6899 | |
rgb(162, 236, 104, 80%) | #a2ec68CC | |
rgb(162, 236, 104, 100%) | #a2ec68FF |
Saturated and desaturated colors of #a2ec68
HSL Code | Preview |
---|---|
hsl(94, 10%, 67%) | |
hsl(94, 20%, 67%) | |
hsl(94, 40%, 67%) | |
hsl(94, 60%, 67%) | |
hsl(94, 80%, 67%) | |
hsl(94, 100%, 67%) |
#a2ec68 Color Usage In CSS
body { color: #a2ec68; } p { color: rgb(162, 236, 104); } header { border-bottom:1px solid #a2ec68; }