#8edfc1 Color
Color Codes | |
---|---|
Hex Code | #8edfc1 |
RGB Code | rgb(142, 223, 193) |
HSL Code | hsl(158, 56%, 72%) |
#8edfc1 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(142, 223, 193); }
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(158, 56%, 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 #8edfc1
RGB Code | Hex Code | Preview |
---|---|---|
rgb(142, 223, 193, 10%) | #8edfc11a | |
rgb(142, 223, 193, 20%) | #8edfc133 | |
rgb(142, 223, 193, 40%) | #8edfc14C | |
rgb(142, 223, 193, 60%) | #8edfc199 | |
rgb(142, 223, 193, 80%) | #8edfc1CC | |
rgb(142, 223, 193, 100%) | #8edfc1FF |
Saturated and desaturated colors of #8edfc1
HSL Code | Preview |
---|---|
hsl(158, 10%, 72%) | |
hsl(158, 20%, 72%) | |
hsl(158, 40%, 72%) | |
hsl(158, 60%, 72%) | |
hsl(158, 80%, 72%) | |
hsl(158, 100%, 72%) |
#8edfc1 Color Usage In CSS
body { color: #8edfc1; } p { color: rgb(142, 223, 193); } header { border-bottom:1px solid #8edfc1; }