HEX: #E7AFDD
RGB: (231,175,221)
#E7AFDD contains red, green and blue colors in about the same proportion. Web safe color of #E7AFDD is #FF99CC (or #F9C).
#E7AFDD color RGB value is (231,175,221).
RGB: (231,175,221) (91%,69%,87%)
R 231 of 255 = 91%
G 175 of 255 = 69%
B 221 of 255 = 87%
R + G + B ~ 82%. #E7AFDD is quite light color.
R + G + B =
231 + 175 + 221 = 627 (100%)
R 231 of 627 ~ 36.84%
G 175 of 627 ~ 27.91%
B 221 of 627 ~ 35.25%
#E7AFDD color CMYK value is (0,24,4,9).
CMYK: (0,24,4,9) C0M24Y4K9 (0%,24%,4%,9%) (0.00/0.24/0.04/0.09)
E7 | AF | DD | |
---|---|---|---|
RGB | 231 | 175 | 221 |
HSL | 311° | 53.85% | 79.61% |
HSB/HSV | 311° | 24.24% | 90.59% |
CMYK | 0.00% | 24.24% | 4.33% |
9.41% |
HEX | E7 | AF | DD |
Decimal | 231 | 175 | 221 |
Binary | 11100111 | 10101111 | 11011101 |
Octal | 347 | 257 | 335 |
Examples of css and html codes for elements with #E7AFDD color. Also use rgb(231,175,221) instead hex code.
.myTextColor { color: #E7AFDD; }
<p style="color:#E7AFDD">This sample text font color is #E7AFDD.</p>
This text font color is #E7AFDD.
.myBgColor { background-color: #E7AFDD; }
<div style="background-color:#E7AFDD">Inner text</div>
This div background color is #E7AFDD.
.myBorderColor { border: 1px solid #E7AFDD; }
<div style="border:3px solid #E7AFDD">Div</div>
This div border color is #E7AFDD.
.myOpacity80 { color: #E7AFDD; opacity: 0.8; }
<p style="color:#E7AFDD;opacity:0.8;">80%</p>
Text with #E7AFDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E7AFDD;}
<p style="text-shadow: 3px 3px 1px #E7AFDD">Text here.</p>
This text has shadow with #E7AFDD color.
.textShadow {text-shadow: 3px 3px 1px #E7AFDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E7AFDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #E7AFDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E7AFDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E7AFDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #E7AFDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E7AFDD; -webkit-box-shadow: 1px 1px 3px 2px #E7AFDD; box-shadow: 1px 1px 3px 2px #E7AFDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E7AFDD; -webkit-box-shadow: 1px 1px 3px 2px #E7AFDD; box-shadow:1px 1px 3px 2px #E7AFDD;">
Div content here</div>
This text has color #E7AFDD on black background.
This text has color #E7AFDD on white background.
This text has black color on #E7AFDD background.
This text has white color on #E7AFDD background.