HEX: #E7DAFA
RGB: (231,218,250)
#E7DAFA contains red, green and blue colors in about the same proportion. Web safe color of #E7DAFA is #FFCCFF (or #FCF).
#E7DAFA color RGB value is (231,218,250).
RGB: (231,218,250) (91%,85%,98%)
R 231 of 255 = 91%
G 218 of 255 = 85%
B 250 of 255 = 98%
R + G + B ~ 91%. #E7DAFA is light color.
R + G + B =
231 + 218 + 250 = 699 (100%)
R 231 of 699 ~ 33.05%
G 218 of 699 ~ 31.19%
B 250 of 699 ~ 35.77%
#E7DAFA color CMYK value is (8,13,0,2).
CMYK: (8,13,0,2) C8M13Y0K2 (8%,13%,0%,2%) (0.08/0.13/0.00/0.02)
E7 | DA | FA | |
---|---|---|---|
RGB | 231 | 218 | 250 |
HSL | 264° | 76.19% | 91.76% |
HSB/HSV | 264° | 12.80% | 98.04% |
CMYK | 7.60% | 12.80% | 0.00% |
1.96% |
HEX | E7 | DA | FA |
Decimal | 231 | 218 | 250 |
Binary | 11100111 | 11011010 | 11111010 |
Octal | 347 | 332 | 372 |
Examples of css and html codes for elements with #E7DAFA color. Also use rgb(231,218,250) instead hex code.
.myTextColor { color: #E7DAFA; }
<p style="color:#E7DAFA">This sample text font color is #E7DAFA.</p>
This text font color is #E7DAFA.
.myBgColor { background-color: #E7DAFA; }
<div style="background-color:#E7DAFA">Inner text</div>
This div background color is #E7DAFA.
.myBorderColor { border: 1px solid #E7DAFA; }
<div style="border:3px solid #E7DAFA">Div</div>
This div border color is #E7DAFA.
.myOpacity80 { color: #E7DAFA; opacity: 0.8; }
<p style="color:#E7DAFA;opacity:0.8;">80%</p>
Text with #E7DAFA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E7DAFA;}
<p style="text-shadow: 3px 3px 1px #E7DAFA">Text here.</p>
This text has shadow with #E7DAFA color.
.textShadow {text-shadow: 3px 3px 1px #E7DAFA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E7DAFA, 5px 5px 20px red">Text here.</p>
This text has shadow with #E7DAFA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E7DAFA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E7DAFA, Direction=45, Strength=4)">Text</p>
This text has shadow with #E7DAFA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E7DAFA; -webkit-box-shadow: 1px 1px 3px 2px #E7DAFA; box-shadow: 1px 1px 3px 2px #E7DAFA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E7DAFA; -webkit-box-shadow: 1px 1px 3px 2px #E7DAFA; box-shadow:1px 1px 3px 2px #E7DAFA;">
Div content here</div>
This text has color #E7DAFA on black background.
This text has color #E7DAFA on white background.
This text has black color on #E7DAFA background.
This text has white color on #E7DAFA background.