HEX: #E7ADEF
RGB: (231,173,239)
#E7ADEF contains mainly red and blue colors. Web safe color of #E7ADEF is #FF99FF (or #F9F).
#E7ADEF color RGB value is (231,173,239).
RGB: (231,173,239) (91%,68%,94%)
R 231 of 255 = 91%
G 173 of 255 = 68%
B 239 of 255 = 94%
R + G + B ~ 84%. #E7ADEF is quite light color.
R + G + B =
231 + 173 + 239 = 643 (100%)
R 231 of 643 ~ 35.93%
G 173 of 643 ~ 26.91%
B 239 of 643 ~ 37.17%
#E7ADEF color CMYK value is (3,28,0,6).
CMYK: (3,28,0,6) C3M28Y0K6 (3%,28%,0%,6%) (0.03/0.28/0.00/0.06)
E7 | AD | EF | |
---|---|---|---|
RGB | 231 | 173 | 239 |
HSL | 293° | 67.35% | 80.78% |
HSB/HSV | 293° | 27.62% | 93.73% |
CMYK | 3.35% | 27.62% | 0.00% |
6.27% |
HEX | E7 | AD | EF |
Decimal | 231 | 173 | 239 |
Binary | 11100111 | 10101101 | 11101111 |
Octal | 347 | 255 | 357 |
Examples of css and html codes for elements with #E7ADEF color. Also use rgb(231,173,239) instead hex code.
.myTextColor { color: #E7ADEF; }
<p style="color:#E7ADEF">This sample text font color is #E7ADEF.</p>
This text font color is #E7ADEF.
.myBgColor { background-color: #E7ADEF; }
<div style="background-color:#E7ADEF">Inner text</div>
This div background color is #E7ADEF.
.myBorderColor { border: 1px solid #E7ADEF; }
<div style="border:3px solid #E7ADEF">Div</div>
This div border color is #E7ADEF.
.myOpacity80 { color: #E7ADEF; opacity: 0.8; }
<p style="color:#E7ADEF;opacity:0.8;">80%</p>
Text with #E7ADEF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E7ADEF;}
<p style="text-shadow: 3px 3px 1px #E7ADEF">Text here.</p>
This text has shadow with #E7ADEF color.
.textShadow {text-shadow: 3px 3px 1px #E7ADEF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E7ADEF, 5px 5px 20px red">Text here.</p>
This text has shadow with #E7ADEF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E7ADEF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E7ADEF, Direction=45, Strength=4)">Text</p>
This text has shadow with #E7ADEF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E7ADEF; -webkit-box-shadow: 1px 1px 3px 2px #E7ADEF; box-shadow: 1px 1px 3px 2px #E7ADEF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E7ADEF; -webkit-box-shadow: 1px 1px 3px 2px #E7ADEF; box-shadow:1px 1px 3px 2px #E7ADEF;">
Div content here</div>
This text has color #E7ADEF on black background.
This text has color #E7ADEF on white background.
This text has black color on #E7ADEF background.
This text has white color on #E7ADEF background.