#d9aecf Color
Color Codes | |
---|---|
Hex Code | #d9aecf |
RGB Code | rgb(217, 174, 207) |
HSL Code | hsl(314, 36%, 77%) |
#d9aecf Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(217, 174, 207); }
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(314, 36%, 77%); }
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 #d9aecf
RGB Code | Hex Code | Preview |
---|---|---|
rgb(217, 174, 207, 10%) | #d9aecf1a | |
rgb(217, 174, 207, 20%) | #d9aecf33 | |
rgb(217, 174, 207, 40%) | #d9aecf4C | |
rgb(217, 174, 207, 60%) | #d9aecf99 | |
rgb(217, 174, 207, 80%) | #d9aecfCC | |
rgb(217, 174, 207, 100%) | #d9aecfFF |
Saturated and desaturated colors of #d9aecf
HSL Code | Preview |
---|---|
hsl(314, 10%, 77%) | |
hsl(314, 20%, 77%) | |
hsl(314, 40%, 77%) | |
hsl(314, 60%, 77%) | |
hsl(314, 80%, 77%) | |
hsl(314, 100%, 77%) |
#d9aecf Color Usage In CSS
body { color: #d9aecf; } p { color: rgb(217, 174, 207); } header { border-bottom:1px solid #d9aecf; }