HEX: #E9DDFD
RGB: (233,221,253)
#E9DDFD contains red, green and blue colors in about the same proportion. Web safe color of #E9DDFD is #FFCCFF (or #FCF).
#E9DDFD color RGB value is (233,221,253).
RGB: (233,221,253) (91%,87%,99%)
R 233 of 255 = 91%
G 221 of 255 = 87%
B 253 of 255 = 99%
R + G + B ~ 92%. #E9DDFD is light color.
R + G + B =
233 + 221 + 253 = 707 (100%)
R 233 of 707 ~ 32.96%
G 221 of 707 ~ 31.26%
B 253 of 707 ~ 35.79%
#E9DDFD color CMYK value is (8,13,0,1).
CMYK: (8,13,0,1) C8M13Y0K1 (8%,13%,0%,1%) (0.08/0.13/0.00/0.01)
E9 | DD | FD | |
---|---|---|---|
RGB | 233 | 221 | 253 |
HSL | 263° | 88.89% | 92.94% |
HSB/HSV | 263° | 12.65% | 99.22% |
CMYK | 7.91% | 12.65% | 0.00% |
0.78% |
HEX | E9 | DD | FD |
Decimal | 233 | 221 | 253 |
Binary | 11101001 | 11011101 | 11111101 |
Octal | 351 | 335 | 375 |
Examples of css and html codes for elements with #E9DDFD color. Also use rgb(233,221,253) instead hex code.
.myTextColor { color: #E9DDFD; }
<p style="color:#E9DDFD">This sample text font color is #E9DDFD.</p>
This text font color is #E9DDFD.
.myBgColor { background-color: #E9DDFD; }
<div style="background-color:#E9DDFD">Inner text</div>
This div background color is #E9DDFD.
.myBorderColor { border: 1px solid #E9DDFD; }
<div style="border:3px solid #E9DDFD">Div</div>
This div border color is #E9DDFD.
.myOpacity80 { color: #E9DDFD; opacity: 0.8; }
<p style="color:#E9DDFD;opacity:0.8;">80%</p>
Text with #E9DDFD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E9DDFD;}
<p style="text-shadow: 3px 3px 1px #E9DDFD">Text here.</p>
This text has shadow with #E9DDFD color.
.textShadow {text-shadow: 3px 3px 1px #E9DDFD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E9DDFD, 5px 5px 20px red">Text here.</p>
This text has shadow with #E9DDFD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E9DDFD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E9DDFD, Direction=45, Strength=4)">Text</p>
This text has shadow with #E9DDFD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E9DDFD; -webkit-box-shadow: 1px 1px 3px 2px #E9DDFD; box-shadow: 1px 1px 3px 2px #E9DDFD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E9DDFD; -webkit-box-shadow: 1px 1px 3px 2px #E9DDFD; box-shadow:1px 1px 3px 2px #E9DDFD;">
Div content here</div>
This text has color #E9DDFD on black background.
This text has color #E9DDFD on white background.
This text has black color on #E9DDFD background.
This text has white color on #E9DDFD background.