#6ac86a Color
Color Codes | |
---|---|
Hex Code | #6ac86a |
RGB Code | rgb(106, 200, 106) |
HSL Code | hsl(120, 46%, 60%) |
#6ac86a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(106, 200, 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(120, 46%, 60%); }
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 #6ac86a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(106, 200, 106, 10%) | #6ac86a1a | |
rgb(106, 200, 106, 20%) | #6ac86a33 | |
rgb(106, 200, 106, 40%) | #6ac86a4C | |
rgb(106, 200, 106, 60%) | #6ac86a99 | |
rgb(106, 200, 106, 80%) | #6ac86aCC | |
rgb(106, 200, 106, 100%) | #6ac86aFF |
Saturated and desaturated colors of #6ac86a
HSL Code | Preview |
---|---|
hsl(120, 10%, 60%) | |
hsl(120, 20%, 60%) | |
hsl(120, 40%, 60%) | |
hsl(120, 60%, 60%) | |
hsl(120, 80%, 60%) | |
hsl(120, 100%, 60%) |
#6ac86a Color Usage In CSS
body { color: #6ac86a; } p { color: rgb(106, 200, 106); } header { border-bottom:1px solid #6ac86a; }