#99f980 Color
Color Codes | |
---|---|
Hex Code | #99f980 |
RGB Code | rgb(153, 249, 128) |
HSL Code | hsl(108, 91%, 74%) |
#99f980 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(153, 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(108, 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 #99f980
RGB Code | Hex Code | Preview |
---|---|---|
rgb(153, 249, 128, 10%) | #99f9801a | |
rgb(153, 249, 128, 20%) | #99f98033 | |
rgb(153, 249, 128, 40%) | #99f9804C | |
rgb(153, 249, 128, 60%) | #99f98099 | |
rgb(153, 249, 128, 80%) | #99f980CC | |
rgb(153, 249, 128, 100%) | #99f980FF |
Saturated and desaturated colors of #99f980
HSL Code | Preview |
---|---|
hsl(108, 10%, 74%) | |
hsl(108, 20%, 74%) | |
hsl(108, 40%, 74%) | |
hsl(108, 60%, 74%) | |
hsl(108, 80%, 74%) | |
hsl(108, 100%, 74%) |
#99f980 Color Usage In CSS
body { color: #99f980; } p { color: rgb(153, 249, 128); } header { border-bottom:1px solid #99f980; }