#8ff980 Color
Color Codes | |
---|---|
Hex Code | #8ff980 |
RGB Code | rgb(143, 249, 128) |
HSL Code | hsl(113, 91%, 74%) |
#8ff980 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(143, 249, 128); }
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(113, 91%, 74%); }
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 #8ff980
RGB Code | Hex Code | Preview |
---|---|---|
rgb(143, 249, 128, 10%) | #8ff9801a | |
rgb(143, 249, 128, 20%) | #8ff98033 | |
rgb(143, 249, 128, 40%) | #8ff9804C | |
rgb(143, 249, 128, 60%) | #8ff98099 | |
rgb(143, 249, 128, 80%) | #8ff980CC | |
rgb(143, 249, 128, 100%) | #8ff980FF |
Saturated and desaturated colors of #8ff980
HSL Code | Preview |
---|---|
hsl(113, 10%, 74%) | |
hsl(113, 20%, 74%) | |
hsl(113, 40%, 74%) | |
hsl(113, 60%, 74%) | |
hsl(113, 80%, 74%) | |
hsl(113, 100%, 74%) |
#8ff980 Color Usage In CSS
body { color: #8ff980; } p { color: rgb(143, 249, 128); } header { border-bottom:1px solid #8ff980; }