#80ef61 Color
Color Codes | |
---|---|
Hex Code | #80ef61 |
RGB Code | rgb(128, 239, 97) |
HSL Code | hsl(107, 82%, 66%) |
#80ef61 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(128, 239, 97); }
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(107, 82%, 66%); }
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 #80ef61
RGB Code | Hex Code | Preview |
---|---|---|
rgb(128, 239, 97, 10%) | #80ef611a | |
rgb(128, 239, 97, 20%) | #80ef6133 | |
rgb(128, 239, 97, 40%) | #80ef614C | |
rgb(128, 239, 97, 60%) | #80ef6199 | |
rgb(128, 239, 97, 80%) | #80ef61CC | |
rgb(128, 239, 97, 100%) | #80ef61FF |
Saturated and desaturated colors of #80ef61
HSL Code | Preview |
---|---|
hsl(107, 10%, 66%) | |
hsl(107, 20%, 66%) | |
hsl(107, 40%, 66%) | |
hsl(107, 60%, 66%) | |
hsl(107, 80%, 66%) | |
hsl(107, 100%, 66%) |
#80ef61 Color Usage In CSS
body { color: #80ef61; } p { color: rgb(128, 239, 97); } header { border-bottom:1px solid #80ef61; }