#c1e2f6 Color
Color Codes | |
---|---|
Hex Code | #c1e2f6 |
RGB Code | rgb(193, 226, 246) |
HSL Code | hsl(203, 75%, 86%) |
#c1e2f6 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(193, 226, 246); }
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(203, 75%, 86%); }
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 #c1e2f6
RGB Code | Hex Code | Preview |
---|---|---|
rgb(193, 226, 246, 10%) | #c1e2f61a | |
rgb(193, 226, 246, 20%) | #c1e2f633 | |
rgb(193, 226, 246, 40%) | #c1e2f64C | |
rgb(193, 226, 246, 60%) | #c1e2f699 | |
rgb(193, 226, 246, 80%) | #c1e2f6CC | |
rgb(193, 226, 246, 100%) | #c1e2f6FF |
Saturated and desaturated colors of #c1e2f6
HSL Code | Preview |
---|---|
hsl(203, 10%, 86%) | |
hsl(203, 20%, 86%) | |
hsl(203, 40%, 86%) | |
hsl(203, 60%, 86%) | |
hsl(203, 80%, 86%) | |
hsl(203, 100%, 86%) |
#c1e2f6 Color Usage In CSS
body { color: #c1e2f6; } p { color: rgb(193, 226, 246); } header { border-bottom:1px solid #c1e2f6; }