HEX: #E9DBFD
RGB: (233,219,253)
#E9DBFD contains red, green and blue colors in about the same proportion. Web safe color of #E9DBFD is #FFCCFF (or #FCF).
#E9DBFD color RGB value is (233,219,253).
RGB: (233,219,253) (91%,86%,99%)
R 233 of 255 = 91%
G 219 of 255 = 86%
B 253 of 255 = 99%
R + G + B ~ 92%. #E9DBFD is light color.
R + G + B =
233 + 219 + 253 = 705 (100%)
R 233 of 705 ~ 33.05%
G 219 of 705 ~ 31.06%
B 253 of 705 ~ 35.89%
#E9DBFD 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 | DB | FD | |
---|---|---|---|
RGB | 233 | 219 | 253 |
HSL | 265° | 89.47% | 92.55% |
HSB/HSV | 265° | 13.44% | 99.22% |
CMYK | 7.91% | 13.44% | 0.00% |
0.78% |
HEX | E9 | DB | FD |
Decimal | 233 | 219 | 253 |
Binary | 11101001 | 11011011 | 11111101 |
Octal | 351 | 333 | 375 |
Examples of css and html codes for elements with #E9DBFD color. Also use rgb(233,219,253) instead hex code.
.myTextColor { color: #E9DBFD; }
<p style="color:#E9DBFD">This sample text font color is #E9DBFD.</p>
This text font color is #E9DBFD.
.myBgColor { background-color: #E9DBFD; }
<div style="background-color:#E9DBFD">Inner text</div>
This div background color is #E9DBFD.
.myBorderColor { border: 1px solid #E9DBFD; }
<div style="border:3px solid #E9DBFD">Div</div>
This div border color is #E9DBFD.
.myOpacity80 { color: #E9DBFD; opacity: 0.8; }
<p style="color:#E9DBFD;opacity:0.8;">80%</p>
Text with #E9DBFD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E9DBFD;}
<p style="text-shadow: 3px 3px 1px #E9DBFD">Text here.</p>
This text has shadow with #E9DBFD color.
.textShadow {text-shadow: 3px 3px 1px #E9DBFD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E9DBFD, 5px 5px 20px red">Text here.</p>
This text has shadow with #E9DBFD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E9DBFD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E9DBFD, Direction=45, Strength=4)">Text</p>
This text has shadow with #E9DBFD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E9DBFD; -webkit-box-shadow: 1px 1px 3px 2px #E9DBFD; box-shadow: 1px 1px 3px 2px #E9DBFD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E9DBFD; -webkit-box-shadow: 1px 1px 3px 2px #E9DBFD; box-shadow:1px 1px 3px 2px #E9DBFD;">
Div content here</div>
This text has color #E9DBFD on black background.
This text has color #E9DBFD on white background.
This text has black color on #E9DBFD background.
This text has white color on #E9DBFD background.