#80ffa0 Color
Color Codes | |
---|---|
Hex Code | #80ffa0 |
RGB Code | rgb(128, 255, 160) |
HSL Code | hsl(135, 100%, 75%) |
#80ffa0 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(128, 255, 160); }
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(135, 100%, 75%); }
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 #80ffa0
RGB Code | Hex Code | Preview |
---|---|---|
rgb(128, 255, 160, 10%) | #80ffa01a | |
rgb(128, 255, 160, 20%) | #80ffa033 | |
rgb(128, 255, 160, 40%) | #80ffa04C | |
rgb(128, 255, 160, 60%) | #80ffa099 | |
rgb(128, 255, 160, 80%) | #80ffa0CC | |
rgb(128, 255, 160, 100%) | #80ffa0FF |
Saturated and desaturated colors of #80ffa0
HSL Code | Preview |
---|---|
hsl(135, 10%, 75%) | |
hsl(135, 20%, 75%) | |
hsl(135, 40%, 75%) | |
hsl(135, 60%, 75%) | |
hsl(135, 80%, 75%) | |
hsl(135, 100%, 75%) |
#80ffa0 Color Usage In CSS
body { color: #80ffa0; } p { color: rgb(128, 255, 160); } header { border-bottom:1px solid #80ffa0; }