#c29daf Color
Color Codes | |
---|---|
Hex Code | #c29daf |
RGB Code | rgb(194, 157, 175) |
HSL Code | hsl(331, 23%, 69%) |
#c29daf Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(194, 157, 175); }
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(331, 23%, 69%); }
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 #c29daf
RGB Code | Hex Code | Preview |
---|---|---|
rgb(194, 157, 175, 10%) | #c29daf1a | |
rgb(194, 157, 175, 20%) | #c29daf33 | |
rgb(194, 157, 175, 40%) | #c29daf4C | |
rgb(194, 157, 175, 60%) | #c29daf99 | |
rgb(194, 157, 175, 80%) | #c29dafCC | |
rgb(194, 157, 175, 100%) | #c29dafFF |
Saturated and desaturated colors of #c29daf
HSL Code | Preview |
---|---|
hsl(331, 10%, 69%) | |
hsl(331, 20%, 69%) | |
hsl(331, 40%, 69%) | |
hsl(331, 60%, 69%) | |
hsl(331, 80%, 69%) | |
hsl(331, 100%, 69%) |
#c29daf Color Usage In CSS
body { color: #c29daf; } p { color: rgb(194, 157, 175); } header { border-bottom:1px solid #c29daf; }