#c6f0e2 Color
Color Codes | |
---|---|
Hex Code | #c6f0e2 |
RGB Code | rgb(198, 240, 226) |
HSL Code | hsl(160, 58%, 86%) |
#c6f0e2 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(198, 240, 226); }
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(160, 58%, 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 #c6f0e2
RGB Code | Hex Code | Preview |
---|---|---|
rgb(198, 240, 226, 10%) | #c6f0e21a | |
rgb(198, 240, 226, 20%) | #c6f0e233 | |
rgb(198, 240, 226, 40%) | #c6f0e24C | |
rgb(198, 240, 226, 60%) | #c6f0e299 | |
rgb(198, 240, 226, 80%) | #c6f0e2CC | |
rgb(198, 240, 226, 100%) | #c6f0e2FF |
Saturated and desaturated colors of #c6f0e2
HSL Code | Preview |
---|---|
hsl(160, 10%, 86%) | |
hsl(160, 20%, 86%) | |
hsl(160, 40%, 86%) | |
hsl(160, 60%, 86%) | |
hsl(160, 80%, 86%) | |
hsl(160, 100%, 86%) |
#c6f0e2 Color Usage In CSS
body { color: #c6f0e2; } p { color: rgb(198, 240, 226); } header { border-bottom:1px solid #c6f0e2; }