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