HEX: #E7DAFF
RGB: (231,218,255)
#E7DAFF contains red, green and blue colors in about the same proportion. Web safe color of #E7DAFF is #FFCCFF (or #FCF).
#E7DAFF color RGB value is (231,218,255).
RGB: (231,218,255) (91%,85%,100%)
R 231 of 255 = 91%
G 218 of 255 = 85%
B 255 of 255 = 100%
R + G + B ~ 92%. #E7DAFF is light color.
R + G + B =
231 + 218 + 255 = 704 (100%)
R 231 of 704 ~ 32.81%
G 218 of 704 ~ 30.97%
B 255 of 704 ~ 36.22%
#E7DAFF color CMYK value is (9,15,0,0).
CMYK: (9,15,0,0) C9M15Y0K0 (9%,15%,0%,0%) (0.09/0.15/0.00/0.00)
E7 | DA | FF | |
---|---|---|---|
RGB | 231 | 218 | 255 |
HSL | 261° | 100.00% | 92.75% |
HSB/HSV | 261° | 14.51% | 100.00% |
CMYK | 9.41% | 14.51% | 0.00% |
0.00% |
HEX | E7 | DA | FF |
Decimal | 231 | 218 | 255 |
Binary | 11100111 | 11011010 | 11111111 |
Octal | 347 | 332 | 377 |
Examples of css and html codes for elements with #E7DAFF color. Also use rgb(231,218,255) instead hex code.
.myTextColor { color: #E7DAFF; }
<p style="color:#E7DAFF">This sample text font color is #E7DAFF.</p>
This text font color is #E7DAFF.
.myBgColor { background-color: #E7DAFF; }
<div style="background-color:#E7DAFF">Inner text</div>
This div background color is #E7DAFF.
.myBorderColor { border: 1px solid #E7DAFF; }
<div style="border:3px solid #E7DAFF">Div</div>
This div border color is #E7DAFF.
.myOpacity80 { color: #E7DAFF; opacity: 0.8; }
<p style="color:#E7DAFF;opacity:0.8;">80%</p>
Text with #E7DAFF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E7DAFF;}
<p style="text-shadow: 3px 3px 1px #E7DAFF">Text here.</p>
This text has shadow with #E7DAFF color.
.textShadow {text-shadow: 3px 3px 1px #E7DAFF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E7DAFF, 5px 5px 20px red">Text here.</p>
This text has shadow with #E7DAFF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E7DAFF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E7DAFF, Direction=45, Strength=4)">Text</p>
This text has shadow with #E7DAFF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E7DAFF; -webkit-box-shadow: 1px 1px 3px 2px #E7DAFF; box-shadow: 1px 1px 3px 2px #E7DAFF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E7DAFF; -webkit-box-shadow: 1px 1px 3px 2px #E7DAFF; box-shadow:1px 1px 3px 2px #E7DAFF;">
Div content here</div>
This text has color #E7DAFF on black background.
This text has color #E7DAFF on white background.
This text has black color on #E7DAFF background.
This text has white color on #E7DAFF background.