HEX: #E1DBDF
RGB: (225,219,223)
#E1DBDF contains red, green and blue colors in about the same proportion. Web safe color of #E1DBDF is #CCCCCC (or #CCC).
#E1DBDF color RGB value is (225,219,223).
RGB: (225,219,223) (88%,86%,87%)
R 225 of 255 = 88%
G 219 of 255 = 86%
B 223 of 255 = 87%
R + G + B ~ 87%. #E1DBDF is light color.
R + G + B =
225 + 219 + 223 = 667 (100%)
R 225 of 667 ~ 33.73%
G 219 of 667 ~ 32.83%
B 223 of 667 ~ 33.43%
#E1DBDF 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 | DB | DF | |
---|---|---|---|
RGB | 225 | 219 | 223 |
HSL | 320° | 9.09% | 87.06% |
HSB/HSV | 320° | 2.67% | 88.24% |
CMYK | 0.00% | 2.67% | 0.89% |
11.76% |
HEX | E1 | DB | DF |
Decimal | 225 | 219 | 223 |
Binary | 11100001 | 11011011 | 11011111 |
Octal | 341 | 333 | 337 |
Examples of css and html codes for elements with #E1DBDF color. Also use rgb(225,219,223) instead hex code.
.myTextColor { color: #E1DBDF; }
<p style="color:#E1DBDF">This sample text font color is #E1DBDF.</p>
This text font color is #E1DBDF.
.myBgColor { background-color: #E1DBDF; }
<div style="background-color:#E1DBDF">Inner text</div>
This div background color is #E1DBDF.
.myBorderColor { border: 1px solid #E1DBDF; }
<div style="border:3px solid #E1DBDF">Div</div>
This div border color is #E1DBDF.
.myOpacity80 { color: #E1DBDF; opacity: 0.8; }
<p style="color:#E1DBDF;opacity:0.8;">80%</p>
Text with #E1DBDF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E1DBDF;}
<p style="text-shadow: 3px 3px 1px #E1DBDF">Text here.</p>
This text has shadow with #E1DBDF color.
.textShadow {text-shadow: 3px 3px 1px #E1DBDF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E1DBDF, 5px 5px 20px red">Text here.</p>
This text has shadow with #E1DBDF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E1DBDF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E1DBDF, Direction=45, Strength=4)">Text</p>
This text has shadow with #E1DBDF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E1DBDF; -webkit-box-shadow: 1px 1px 3px 2px #E1DBDF; box-shadow: 1px 1px 3px 2px #E1DBDF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E1DBDF; -webkit-box-shadow: 1px 1px 3px 2px #E1DBDF; box-shadow:1px 1px 3px 2px #E1DBDF;">
Div content here</div>
This text has color #E1DBDF on black background.
This text has color #E1DBDF on white background.
This text has black color on #E1DBDF background.
This text has white color on #E1DBDF background.