#8ddfca Color
Color Codes | |
---|---|
Hex Code | #8ddfca |
RGB Code | rgb(141, 223, 202) |
HSL Code | hsl(165, 56%, 71%) |
#8ddfca Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(141, 223, 202); }
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(165, 56%, 71%); }
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 #8ddfca
RGB Code | Hex Code | Preview |
---|---|---|
rgb(141, 223, 202, 10%) | #8ddfca1a | |
rgb(141, 223, 202, 20%) | #8ddfca33 | |
rgb(141, 223, 202, 40%) | #8ddfca4C | |
rgb(141, 223, 202, 60%) | #8ddfca99 | |
rgb(141, 223, 202, 80%) | #8ddfcaCC | |
rgb(141, 223, 202, 100%) | #8ddfcaFF |
Saturated and desaturated colors of #8ddfca
HSL Code | Preview |
---|---|
hsl(165, 10%, 71%) | |
hsl(165, 20%, 71%) | |
hsl(165, 40%, 71%) | |
hsl(165, 60%, 71%) | |
hsl(165, 80%, 71%) | |
hsl(165, 100%, 71%) |
#8ddfca Color Usage In CSS
body { color: #8ddfca; } p { color: rgb(141, 223, 202); } header { border-bottom:1px solid #8ddfca; }