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