#fcc4de Color
Color Codes | |
---|---|
Hex Code | #fcc4de |
RGB Code | rgb(252, 196, 222) |
HSL Code | hsl(332, 90%, 88%) |
#fcc4de Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(252, 196, 222); }
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(332, 90%, 88%); }
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 #fcc4de
RGB Code | Hex Code | Preview |
---|---|---|
rgb(252, 196, 222, 10%) | #fcc4de1a | |
rgb(252, 196, 222, 20%) | #fcc4de33 | |
rgb(252, 196, 222, 40%) | #fcc4de4C | |
rgb(252, 196, 222, 60%) | #fcc4de99 | |
rgb(252, 196, 222, 80%) | #fcc4deCC | |
rgb(252, 196, 222, 100%) | #fcc4deFF |
Saturated and desaturated colors of #fcc4de
HSL Code | Preview |
---|---|
hsl(332, 10%, 88%) | |
hsl(332, 20%, 88%) | |
hsl(332, 40%, 88%) | |
hsl(332, 60%, 88%) | |
hsl(332, 80%, 88%) | |
hsl(332, 100%, 88%) |
#fcc4de Color Usage In CSS
body { color: #fcc4de; } p { color: rgb(252, 196, 222); } header { border-bottom:1px solid #fcc4de; }