HEX: #E7AFEA
RGB: (231,175,234)
#E7AFEA contains red, green and blue colors in about the same proportion. Web safe color of #E7AFEA is #FF99FF (or #F9F).
#E7AFEA color RGB value is (231,175,234).
RGB: (231,175,234) (91%,69%,92%)
R 231 of 255 = 91%
G 175 of 255 = 69%
B 234 of 255 = 92%
R + G + B ~ 84%. #E7AFEA is quite light color.
R + G + B =
231 + 175 + 234 = 640 (100%)
R 231 of 640 ~ 36.09%
G 175 of 640 ~ 27.34%
B 234 of 640 ~ 36.56%
#E7AFEA color CMYK value is (1,25,0,8).
CMYK: (1,25,0,8) C1M25Y0K8 (1%,25%,0%,8%) (0.01/0.25/0.00/0.08)
E7 | AF | EA | |
---|---|---|---|
RGB | 231 | 175 | 234 |
HSL | 297° | 58.42% | 80.20% |
HSB/HSV | 297° | 25.21% | 91.76% |
CMYK | 1.28% | 25.21% | 0.00% |
8.24% |
HEX | E7 | AF | EA |
Decimal | 231 | 175 | 234 |
Binary | 11100111 | 10101111 | 11101010 |
Octal | 347 | 257 | 352 |
Examples of css and html codes for elements with #E7AFEA color. Also use rgb(231,175,234) instead hex code.
.myTextColor { color: #E7AFEA; }
<p style="color:#E7AFEA">This sample text font color is #E7AFEA.</p>
This text font color is #E7AFEA.
.myBgColor { background-color: #E7AFEA; }
<div style="background-color:#E7AFEA">Inner text</div>
This div background color is #E7AFEA.
.myBorderColor { border: 1px solid #E7AFEA; }
<div style="border:3px solid #E7AFEA">Div</div>
This div border color is #E7AFEA.
.myOpacity80 { color: #E7AFEA; opacity: 0.8; }
<p style="color:#E7AFEA;opacity:0.8;">80%</p>
Text with #E7AFEA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E7AFEA;}
<p style="text-shadow: 3px 3px 1px #E7AFEA">Text here.</p>
This text has shadow with #E7AFEA color.
.textShadow {text-shadow: 3px 3px 1px #E7AFEA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E7AFEA, 5px 5px 20px red">Text here.</p>
This text has shadow with #E7AFEA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E7AFEA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E7AFEA, Direction=45, Strength=4)">Text</p>
This text has shadow with #E7AFEA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E7AFEA; -webkit-box-shadow: 1px 1px 3px 2px #E7AFEA; box-shadow: 1px 1px 3px 2px #E7AFEA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E7AFEA; -webkit-box-shadow: 1px 1px 3px 2px #E7AFEA; box-shadow:1px 1px 3px 2px #E7AFEA;">
Div content here</div>
This text has color #E7AFEA on black background.
This text has color #E7AFEA on white background.
This text has black color on #E7AFEA background.
This text has white color on #E7AFEA background.