#e1dfd2 hex color information.
RGB value of #e1dfd2 is (225,223,210)
Change page background color to #e1dfd2
| Reset
| RGB | 225 | 223 | 210 |
|---|---|---|---|
| HSL | 0.14 | 0.20 | 0.85 |
| HSV | 52° | 7° | 88° |
| CMYK | 0.00 | 0.01 | 0.07 0.12 |
| XYZ | 69.0719 | 73.4360 | 71.5069 |
| Yxy | 73.4360 | 0.3227 | 0.3431 |
| Hunter Lab | 85.6948 | -6.0910 | 10.5126 |
| CIE-Lab | 88.6552 | -1.5712 | 6.5962 |
#e1dfd2 hex color red value is 225, green value is 223 and the blue value of its RGB is 223. Cylindrical-coordinate representations (also known as HSL) of color #e1dfd2 hue: 0.14 , saturation: 0.20 and the lightness value of e1dfd2 is 0.85.
The process color (four color CMYK) of #e1dfd2 hex color is 0.00, 0.01, 0.07, 0.12. Web safe color of #e1dfd2 is #cccccc
Color #e1dfd2 contains mostly RED color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 11100001 | 11011111 | 11010010 |
| Octal | 341 | 337 | 322 |
| Decimal | 225 | 223 | 210 |
| Hexadecimal | E1 | DF | D2 |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#e1dfd2; }
.myforecolor {color:#e1dfd2; }
.mybordercolor {border:3px solid #e1dfd2; }
This sample text font color is #e1dfd2
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:#e1dfd2">Text here</p>
This div background color is #e1dfd2
<div style="background-color:#e1dfd2">
Div content here</div>
This div border color is #e1dfd2
<div style="border:3px solid #e1dfd2">
Div here</div>
| #e1dfd2 | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(225,223,210, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #e1dfd2;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #e1dfd2;
-webkit-box-shadow: 1px 1px 3px 2px #e1dfd2;
box-shadow: 1px 1px 3px 2px #e1dfd2;
}
<p style="text-shadow: 4px 4px 2px rgba(225,223,210, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #e1dfd2">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #e1dfd2
<div style="-moz-box-shadow: 1px 1px 3px 2px #e1dfd2; -webkit-box-shadow: 1px 1px 3px 2px #e1dfd2; box-shadow: 1px 1px 3px 2px #e1dfd2;">
Div content here</div>