HEX: #E9D9DD
RGB: (233,217,221)
#E9D9DD contains red, green and blue colors in about the same proportion. Web safe color of #E9D9DD is #FFCCCC (or #FCC).
#E9D9DD color RGB value is (233,217,221).
RGB: (233,217,221) (91%,85%,87%)
R 233 of 255 = 91%
G 217 of 255 = 85%
B 221 of 255 = 87%
R + G + B ~ 88%. #E9D9DD is light color.
R + G + B =
233 + 217 + 221 = 671 (100%)
R 233 of 671 ~ 34.72%
G 217 of 671 ~ 32.34%
B 221 of 671 ~ 32.94%
#E9D9DD color CMYK value is (0,7,5,9).
CMYK: (0,7,5,9) C0M7Y5K9 (0%,7%,5%,9%) (0.00/0.07/0.05/0.09)
E9 | D9 | DD | |
---|---|---|---|
RGB | 233 | 217 | 221 |
HSL | 345° | 26.67% | 88.24% |
HSB/HSV | 345° | 6.87% | 91.37% |
CMYK | 0.00% | 6.87% | 5.15% |
8.63% |
HEX | E9 | D9 | DD |
Decimal | 233 | 217 | 221 |
Binary | 11101001 | 11011001 | 11011101 |
Octal | 351 | 331 | 335 |
Examples of css and html codes for elements with #E9D9DD color. Also use rgb(233,217,221) instead hex code.
.myTextColor { color: #E9D9DD; }
<p style="color:#E9D9DD">This sample text font color is #E9D9DD.</p>
This text font color is #E9D9DD.
.myBgColor { background-color: #E9D9DD; }
<div style="background-color:#E9D9DD">Inner text</div>
This div background color is #E9D9DD.
.myBorderColor { border: 1px solid #E9D9DD; }
<div style="border:3px solid #E9D9DD">Div</div>
This div border color is #E9D9DD.
.myOpacity80 { color: #E9D9DD; opacity: 0.8; }
<p style="color:#E9D9DD;opacity:0.8;">80%</p>
Text with #E9D9DD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E9D9DD;}
<p style="text-shadow: 3px 3px 1px #E9D9DD">Text here.</p>
This text has shadow with #E9D9DD color.
.textShadow {text-shadow: 3px 3px 1px #E9D9DD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E9D9DD, 5px 5px 20px red">Text here.</p>
This text has shadow with #E9D9DD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E9D9DD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E9D9DD, Direction=45, Strength=4)">Text</p>
This text has shadow with #E9D9DD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E9D9DD; -webkit-box-shadow: 1px 1px 3px 2px #E9D9DD; box-shadow: 1px 1px 3px 2px #E9D9DD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E9D9DD; -webkit-box-shadow: 1px 1px 3px 2px #E9D9DD; box-shadow:1px 1px 3px 2px #E9D9DD;">
Div content here</div>
This text has color #E9D9DD on black background.
This text has color #E9D9DD on white background.
This text has black color on #E9D9DD background.
This text has white color on #E9D9DD background.