#ead5da Color
Color Codes | |
---|---|
Hex Code | #ead5da |
RGB Code | rgb(234, 213, 218) |
HSL Code | hsl(346, 33%, 88%) |
#ead5da Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(234, 213, 218); }
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(346, 33%, 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 #ead5da
RGB Code | Hex Code | Preview |
---|---|---|
rgb(234, 213, 218, 10%) | #ead5da1a | |
rgb(234, 213, 218, 20%) | #ead5da33 | |
rgb(234, 213, 218, 40%) | #ead5da4C | |
rgb(234, 213, 218, 60%) | #ead5da99 | |
rgb(234, 213, 218, 80%) | #ead5daCC | |
rgb(234, 213, 218, 100%) | #ead5daFF |
Saturated and desaturated colors of #ead5da
HSL Code | Preview |
---|---|
hsl(346, 10%, 88%) | |
hsl(346, 20%, 88%) | |
hsl(346, 40%, 88%) | |
hsl(346, 60%, 88%) | |
hsl(346, 80%, 88%) | |
hsl(346, 100%, 88%) |
#ead5da Color Usage In CSS
body { color: #ead5da; } p { color: rgb(234, 213, 218); } header { border-bottom:1px solid #ead5da; }