#cdfecc Color
Color Codes | |
---|---|
Hex Code | #cdfecc |
RGB Code | rgb(205, 254, 204) |
HSL Code | hsl(119, 96%, 90%) |
#cdfecc Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(205, 254, 204); }
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(119, 96%, 90%); }
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 #cdfecc
RGB Code | Hex Code | Preview |
---|---|---|
rgb(205, 254, 204, 10%) | #cdfecc1a | |
rgb(205, 254, 204, 20%) | #cdfecc33 | |
rgb(205, 254, 204, 40%) | #cdfecc4C | |
rgb(205, 254, 204, 60%) | #cdfecc99 | |
rgb(205, 254, 204, 80%) | #cdfeccCC | |
rgb(205, 254, 204, 100%) | #cdfeccFF |
Saturated and desaturated colors of #cdfecc
HSL Code | Preview |
---|---|
hsl(119, 10%, 90%) | |
hsl(119, 20%, 90%) | |
hsl(119, 40%, 90%) | |
hsl(119, 60%, 90%) | |
hsl(119, 80%, 90%) | |
hsl(119, 100%, 90%) |
#cdfecc Color Usage In CSS
body { color: #cdfecc; } p { color: rgb(205, 254, 204); } header { border-bottom:1px solid #cdfecc; }