#eca29c Color
Color Codes | |
---|---|
Hex Code | #eca29c |
RGB Code | rgb(236, 162, 156) |
HSL Code | hsl(4, 68%, 77%) |
#eca29c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(236, 162, 156); }
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(4, 68%, 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 #eca29c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(236, 162, 156, 10%) | #eca29c1a | |
rgb(236, 162, 156, 20%) | #eca29c33 | |
rgb(236, 162, 156, 40%) | #eca29c4C | |
rgb(236, 162, 156, 60%) | #eca29c99 | |
rgb(236, 162, 156, 80%) | #eca29cCC | |
rgb(236, 162, 156, 100%) | #eca29cFF |
Saturated and desaturated colors of #eca29c
HSL Code | Preview |
---|---|
hsl(4, 10%, 77%) | |
hsl(4, 20%, 77%) | |
hsl(4, 40%, 77%) | |
hsl(4, 60%, 77%) | |
hsl(4, 80%, 77%) | |
hsl(4, 100%, 77%) |
#eca29c Color Usage In CSS
body { color: #eca29c; } p { color: rgb(236, 162, 156); } header { border-bottom:1px solid #eca29c; }