#9cedef Color
Color Codes | |
---|---|
Hex Code | #9cedef |
RGB Code | rgb(156, 237, 239) |
HSL Code | hsl(181, 72%, 77%) |
#9cedef Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(156, 237, 239); }
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(181, 72%, 77%); }
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 #9cedef
RGB Code | Hex Code | Preview |
---|---|---|
rgb(156, 237, 239, 10%) | #9cedef1a | |
rgb(156, 237, 239, 20%) | #9cedef33 | |
rgb(156, 237, 239, 40%) | #9cedef4C | |
rgb(156, 237, 239, 60%) | #9cedef99 | |
rgb(156, 237, 239, 80%) | #9cedefCC | |
rgb(156, 237, 239, 100%) | #9cedefFF |
Saturated and desaturated colors of #9cedef
HSL Code | Preview |
---|---|
hsl(181, 10%, 77%) | |
hsl(181, 20%, 77%) | |
hsl(181, 40%, 77%) | |
hsl(181, 60%, 77%) | |
hsl(181, 80%, 77%) | |
hsl(181, 100%, 77%) |
#9cedef Color Usage In CSS
body { color: #9cedef; } p { color: rgb(156, 237, 239); } header { border-bottom:1px solid #9cedef; }