#7ae78b Color
Color Codes | |
---|---|
Hex Code | #7ae78b |
RGB Code | rgb(122, 231, 139) |
HSL Code | hsl(129, 69%, 69%) |
#7ae78b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(122, 231, 139); }
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(129, 69%, 69%); }
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 #7ae78b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(122, 231, 139, 10%) | #7ae78b1a | |
rgb(122, 231, 139, 20%) | #7ae78b33 | |
rgb(122, 231, 139, 40%) | #7ae78b4C | |
rgb(122, 231, 139, 60%) | #7ae78b99 | |
rgb(122, 231, 139, 80%) | #7ae78bCC | |
rgb(122, 231, 139, 100%) | #7ae78bFF |
Saturated and desaturated colors of #7ae78b
HSL Code | Preview |
---|---|
hsl(129, 10%, 69%) | |
hsl(129, 20%, 69%) | |
hsl(129, 40%, 69%) | |
hsl(129, 60%, 69%) | |
hsl(129, 80%, 69%) | |
hsl(129, 100%, 69%) |
#7ae78b Color Usage In CSS
body { color: #7ae78b; } p { color: rgb(122, 231, 139); } header { border-bottom:1px solid #7ae78b; }