#a0c16a Color
Color Codes | |
---|---|
Hex Code | #a0c16a |
RGB Code | rgb(160, 193, 106) |
HSL Code | hsl(83, 41%, 59%) |
#a0c16a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(160, 193, 106); }
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(83, 41%, 59%); }
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 #a0c16a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(160, 193, 106, 10%) | #a0c16a1a | |
rgb(160, 193, 106, 20%) | #a0c16a33 | |
rgb(160, 193, 106, 40%) | #a0c16a4C | |
rgb(160, 193, 106, 60%) | #a0c16a99 | |
rgb(160, 193, 106, 80%) | #a0c16aCC | |
rgb(160, 193, 106, 100%) | #a0c16aFF |
Saturated and desaturated colors of #a0c16a
HSL Code | Preview |
---|---|
hsl(83, 10%, 59%) | |
hsl(83, 20%, 59%) | |
hsl(83, 40%, 59%) | |
hsl(83, 60%, 59%) | |
hsl(83, 80%, 59%) | |
hsl(83, 100%, 59%) |
#a0c16a Color Usage In CSS
body { color: #a0c16a; } p { color: rgb(160, 193, 106); } header { border-bottom:1px solid #a0c16a; }