#7ad145 Color
Color Codes | |
---|---|
Hex Code | #7ad145 |
RGB Code | rgb(122, 209, 69) |
HSL Code | hsl(97, 60%, 55%) |
#7ad145 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(122, 209, 69); }
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(97, 60%, 55%); }
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 #7ad145
RGB Code | Hex Code | Preview |
---|---|---|
rgb(122, 209, 69, 10%) | #7ad1451a | |
rgb(122, 209, 69, 20%) | #7ad14533 | |
rgb(122, 209, 69, 40%) | #7ad1454C | |
rgb(122, 209, 69, 60%) | #7ad14599 | |
rgb(122, 209, 69, 80%) | #7ad145CC | |
rgb(122, 209, 69, 100%) | #7ad145FF |
Saturated and desaturated colors of #7ad145
HSL Code | Preview |
---|---|
hsl(97, 10%, 55%) | |
hsl(97, 20%, 55%) | |
hsl(97, 40%, 55%) | |
hsl(97, 60%, 55%) | |
hsl(97, 80%, 55%) | |
hsl(97, 100%, 55%) |
#7ad145 Color Usage In CSS
body { color: #7ad145; } p { color: rgb(122, 209, 69); } header { border-bottom:1px solid #7ad145; }