#c3ecfb Color
Color Codes | |
---|---|
Hex Code | #c3ecfb |
RGB Code | rgb(195, 236, 251) |
HSL Code | hsl(196, 88%, 87%) |
#c3ecfb Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(195, 236, 251); }
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(196, 88%, 87%); }
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 #c3ecfb
RGB Code | Hex Code | Preview |
---|---|---|
rgb(195, 236, 251, 10%) | #c3ecfb1a | |
rgb(195, 236, 251, 20%) | #c3ecfb33 | |
rgb(195, 236, 251, 40%) | #c3ecfb4C | |
rgb(195, 236, 251, 60%) | #c3ecfb99 | |
rgb(195, 236, 251, 80%) | #c3ecfbCC | |
rgb(195, 236, 251, 100%) | #c3ecfbFF |
Saturated and desaturated colors of #c3ecfb
HSL Code | Preview |
---|---|
hsl(196, 10%, 87%) | |
hsl(196, 20%, 87%) | |
hsl(196, 40%, 87%) | |
hsl(196, 60%, 87%) | |
hsl(196, 80%, 87%) | |
hsl(196, 100%, 87%) |
#c3ecfb Color Usage In CSS
body { color: #c3ecfb; } p { color: rgb(195, 236, 251); } header { border-bottom:1px solid #c3ecfb; }