#caecf3 Color
Color Codes | |
---|---|
Hex Code | #caecf3 |
RGB Code | rgb(202, 236, 243) |
HSL Code | hsl(190, 63%, 87%) |
#caecf3 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(202, 236, 243); }
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(190, 63%, 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 #caecf3
RGB Code | Hex Code | Preview |
---|---|---|
rgb(202, 236, 243, 10%) | #caecf31a | |
rgb(202, 236, 243, 20%) | #caecf333 | |
rgb(202, 236, 243, 40%) | #caecf34C | |
rgb(202, 236, 243, 60%) | #caecf399 | |
rgb(202, 236, 243, 80%) | #caecf3CC | |
rgb(202, 236, 243, 100%) | #caecf3FF |
Saturated and desaturated colors of #caecf3
HSL Code | Preview |
---|---|
hsl(190, 10%, 87%) | |
hsl(190, 20%, 87%) | |
hsl(190, 40%, 87%) | |
hsl(190, 60%, 87%) | |
hsl(190, 80%, 87%) | |
hsl(190, 100%, 87%) |
#caecf3 Color Usage In CSS
body { color: #caecf3; } p { color: rgb(202, 236, 243); } header { border-bottom:1px solid #caecf3; }