HEX: #E1DADE
RGB: (225,218,222)
#E1DADE contains red, green and blue colors in about the same proportion. Web safe color of #E1DADE is #CCCCCC (or #CCC).
#E1DADE color RGB value is (225,218,222).
RGB: (225,218,222) (88%,85%,87%)
R 225 of 255 = 88%
G 218 of 255 = 85%
B 222 of 255 = 87%
R + G + B ~ 87%. #E1DADE is light color.
R + G + B =
225 + 218 + 222 = 665 (100%)
R 225 of 665 ~ 33.83%
G 218 of 665 ~ 32.78%
B 222 of 665 ~ 33.38%
#E1DADE color CMYK value is (0,3,1,12).
CMYK: (0,3,1,12) C0M3Y1K12 (0%,3%,1%,12%) (0.00/0.03/0.01/0.12)
E1 | DA | DE | |
---|---|---|---|
RGB | 225 | 218 | 222 |
HSL | 326° | 10.45% | 86.86% |
HSB/HSV | 326° | 3.11% | 88.24% |
CMYK | 0.00% | 3.11% | 1.33% |
11.76% |
HEX | E1 | DA | DE |
Decimal | 225 | 218 | 222 |
Binary | 11100001 | 11011010 | 11011110 |
Octal | 341 | 332 | 336 |
Examples of css and html codes for elements with #E1DADE color. Also use rgb(225,218,222) instead hex code.
.myTextColor { color: #E1DADE; }
<p style="color:#E1DADE">This sample text font color is #E1DADE.</p>
This text font color is #E1DADE.
.myBgColor { background-color: #E1DADE; }
<div style="background-color:#E1DADE">Inner text</div>
This div background color is #E1DADE.
.myBorderColor { border: 1px solid #E1DADE; }
<div style="border:3px solid #E1DADE">Div</div>
This div border color is #E1DADE.
.myOpacity80 { color: #E1DADE; opacity: 0.8; }
<p style="color:#E1DADE;opacity:0.8;">80%</p>
Text with #E1DADE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E1DADE;}
<p style="text-shadow: 3px 3px 1px #E1DADE">Text here.</p>
This text has shadow with #E1DADE color.
.textShadow {text-shadow: 3px 3px 1px #E1DADE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E1DADE, 5px 5px 20px red">Text here.</p>
This text has shadow with #E1DADE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E1DADE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E1DADE, Direction=45, Strength=4)">Text</p>
This text has shadow with #E1DADE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E1DADE; -webkit-box-shadow: 1px 1px 3px 2px #E1DADE; box-shadow: 1px 1px 3px 2px #E1DADE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E1DADE; -webkit-box-shadow: 1px 1px 3px 2px #E1DADE; box-shadow:1px 1px 3px 2px #E1DADE;">
Div content here</div>
This text has color #E1DADE on black background.
This text has color #E1DADE on white background.
This text has black color on #E1DADE background.
This text has white color on #E1DADE background.