#ece5ec hex color information.
RGB value of #ece5ec is (236,229,236)
Change page background color to #ece5ec
| Reset
| RGB | 236 | 229 | 236 |
|---|---|---|---|
| HSL | 0.83 | 0.16 | 0.91 |
| HSV | 300° | 3° | 93° |
| CMYK | 0.00 | 0.03 | 0.00 0.07 |
| XYZ | 77.7517 | 79.9276 | 90.6865 |
| Yxy | 79.9276 | 0.3131 | 0.3218 |
| Hunter Lab | 89.4022 | -1.2153 | 2.4399 |
| CIE-Lab | 91.6524 | 3.6020 | -2.5656 |
#ece5ec hex color red value is 236, green value is 229 and the blue value of its RGB is 229. Cylindrical-coordinate representations (also known as HSL) of color #ece5ec hue: 0.83 , saturation: 0.16 and the lightness value of ece5ec is 0.91.
The process color (four color CMYK) of #ece5ec hex color is 0.00, 0.03, 0.00, 0.07. Web safe color of #ece5ec is #ffccff
Color #ece5ec contains mostly RED color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 11101100 | 11100101 | 11101100 |
| Octal | 354 | 345 | 354 |
| Decimal | 236 | 229 | 236 |
| Hexadecimal | EC | E5 | EC |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#ece5ec; }
.myforecolor {color:#ece5ec; }
.mybordercolor {border:3px solid #ece5ec; }
This sample text font color is #ece5ec
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
<p style="color:#ece5ec">Text here</p>
This div background color is #ece5ec
<div style="background-color:#ece5ec">
Div content here</div>
This div border color is #ece5ec
<div style="border:3px solid #ece5ec">
Div here</div>
| #ece5ec | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(236,229,236, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #ece5ec;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #ece5ec;
-webkit-box-shadow: 1px 1px 3px 2px #ece5ec;
box-shadow: 1px 1px 3px 2px #ece5ec;
}
<p style="text-shadow: 4px 4px 2px rgba(236,229,236, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #ece5ec">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #ece5ec
<div style="-moz-box-shadow: 1px 1px 3px 2px #ece5ec; -webkit-box-shadow: 1px 1px 3px 2px #ece5ec; box-shadow: 1px 1px 3px 2px #ece5ec;">
Div content here</div>