#cae9f3 Color
Color Codes | |
---|---|
Hex Code | #cae9f3 |
RGB Code | rgb(202, 233, 243) |
HSL Code | hsl(195, 63%, 87%) |
#cae9f3 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(202, 233, 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(195, 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 #cae9f3
RGB Code | Hex Code | Preview |
---|---|---|
rgb(202, 233, 243, 10%) | #cae9f31a | |
rgb(202, 233, 243, 20%) | #cae9f333 | |
rgb(202, 233, 243, 40%) | #cae9f34C | |
rgb(202, 233, 243, 60%) | #cae9f399 | |
rgb(202, 233, 243, 80%) | #cae9f3CC | |
rgb(202, 233, 243, 100%) | #cae9f3FF |
Saturated and desaturated colors of #cae9f3
HSL Code | Preview |
---|---|
hsl(195, 10%, 87%) | |
hsl(195, 20%, 87%) | |
hsl(195, 40%, 87%) | |
hsl(195, 60%, 87%) | |
hsl(195, 80%, 87%) | |
hsl(195, 100%, 87%) |
#cae9f3 Color Usage In CSS
body { color: #cae9f3; } p { color: rgb(202, 233, 243); } header { border-bottom:1px solid #cae9f3; }