#80edbd Color
Color Codes | |
---|---|
Hex Code | #80edbd |
RGB Code | rgb(128, 237, 189) |
HSL Code | hsl(154, 75%, 72%) |
#80edbd Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(128, 237, 189); }
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(154, 75%, 72%); }
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 #80edbd
RGB Code | Hex Code | Preview |
---|---|---|
rgb(128, 237, 189, 10%) | #80edbd1a | |
rgb(128, 237, 189, 20%) | #80edbd33 | |
rgb(128, 237, 189, 40%) | #80edbd4C | |
rgb(128, 237, 189, 60%) | #80edbd99 | |
rgb(128, 237, 189, 80%) | #80edbdCC | |
rgb(128, 237, 189, 100%) | #80edbdFF |
Saturated and desaturated colors of #80edbd
HSL Code | Preview |
---|---|
hsl(154, 10%, 72%) | |
hsl(154, 20%, 72%) | |
hsl(154, 40%, 72%) | |
hsl(154, 60%, 72%) | |
hsl(154, 80%, 72%) | |
hsl(154, 100%, 72%) |
#80edbd Color Usage In CSS
body { color: #80edbd; } p { color: rgb(128, 237, 189); } header { border-bottom:1px solid #80edbd; }