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