#dea6ad Color
Color Codes | |
---|---|
Hex Code | #dea6ad |
RGB Code | rgb(222, 166, 173) |
HSL Code | hsl(353, 46%, 76%) |
#dea6ad Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(222, 166, 173); }
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(353, 46%, 76%); }
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 #dea6ad
RGB Code | Hex Code | Preview |
---|---|---|
rgb(222, 166, 173, 10%) | #dea6ad1a | |
rgb(222, 166, 173, 20%) | #dea6ad33 | |
rgb(222, 166, 173, 40%) | #dea6ad4C | |
rgb(222, 166, 173, 60%) | #dea6ad99 | |
rgb(222, 166, 173, 80%) | #dea6adCC | |
rgb(222, 166, 173, 100%) | #dea6adFF |
Saturated and desaturated colors of #dea6ad
HSL Code | Preview |
---|---|
hsl(353, 10%, 76%) | |
hsl(353, 20%, 76%) | |
hsl(353, 40%, 76%) | |
hsl(353, 60%, 76%) | |
hsl(353, 80%, 76%) | |
hsl(353, 100%, 76%) |
#dea6ad Color Usage In CSS
body { color: #dea6ad; } p { color: rgb(222, 166, 173); } header { border-bottom:1px solid #dea6ad; }