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