#c0fdf6 Color
Color Codes | |
---|---|
Hex Code | #c0fdf6 |
RGB Code | rgb(192, 253, 246) |
HSL Code | hsl(173, 94%, 87%) |
#c0fdf6 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(192, 253, 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(173, 94%, 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 #c0fdf6
RGB Code | Hex Code | Preview |
---|---|---|
rgb(192, 253, 246, 10%) | #c0fdf61a | |
rgb(192, 253, 246, 20%) | #c0fdf633 | |
rgb(192, 253, 246, 40%) | #c0fdf64C | |
rgb(192, 253, 246, 60%) | #c0fdf699 | |
rgb(192, 253, 246, 80%) | #c0fdf6CC | |
rgb(192, 253, 246, 100%) | #c0fdf6FF |
Saturated and desaturated colors of #c0fdf6
HSL Code | Preview |
---|---|
hsl(173, 10%, 87%) | |
hsl(173, 20%, 87%) | |
hsl(173, 40%, 87%) | |
hsl(173, 60%, 87%) | |
hsl(173, 80%, 87%) | |
hsl(173, 100%, 87%) |
#c0fdf6 Color Usage In CSS
body { color: #c0fdf6; } p { color: rgb(192, 253, 246); } header { border-bottom:1px solid #c0fdf6; }