HEX: #E1A7DD
RGB: (225,167,221)
#E1A7DD contains red, green and blue colors in about the same proportion. Web safe color of #E1A7DD is #CC99CC (or #C9C).
#E1A7DD color RGB value is (225,167,221).
RGB: (225,167,221) (88%,65%,87%)
R 225 of 255 = 88%
G 167 of 255 = 65%
B 221 of 255 = 87%
R + G + B ~ 80%. #E1A7DD is quite light color.
R + G + B =
225 + 167 + 221 = 613 (100%)
R 225 of 613 ~ 36.7%
G 167 of 613 ~ 27.24%
B 221 of 613 ~ 36.05%
#E1A7DD color CMYK value is (0,26,2,12).
CMYK: (0,26,2,12) C0M26Y2K12 (0%,26%,2%,12%) (0.00/0.26/0.02/0.12)
E1 | A7 | DD | |
---|---|---|---|
RGB | 225 | 167 | 221 |
HSL | 304° | 49.15% | 76.86% |
HSB/HSV | 304° | 25.78% | 88.24% |
CMYK | 0.00% | 25.78% | 1.78% |
11.76% |
HEX | E1 | A7 | DD |
Decimal | 225 | 167 | 221 |
Binary | 11100001 | 10100111 | 11011101 |
Octal | 341 | 247 | 335 |
Examples of css and html codes for elements with #E1A7DD color. Also use rgb(225,167,221) instead hex code.
.myTextColor { color: #E1A7DD; }
<p style="color:#E1A7DD">This sample text font color is #E1A7DD.</p>
This text font color is #E1A7DD.
.myBgColor { background-color: #E1A7DD; }
<div style="background-color:#E1A7DD">Inner text</div>
This div background color is #E1A7DD.
.myBorderColor { border: 1px solid #E1A7DD; }
<div style="border:3px solid #E1A7DD">Div</div>
This div border color is #E1A7DD.
.myOpacity80 { color: #E1A7DD; opacity: 0.8; }
<p style="color:#E1A7DD;opacity:0.8;">80%</p>
Text with #E1A7DD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E1A7DD;}
<p style="text-shadow: 3px 3px 1px #E1A7DD">Text here.</p>
This text has shadow with #E1A7DD color.
.textShadow {text-shadow: 3px 3px 1px #E1A7DD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E1A7DD, 5px 5px 20px red">Text here.</p>
This text has shadow with #E1A7DD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E1A7DD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E1A7DD, Direction=45, Strength=4)">Text</p>
This text has shadow with #E1A7DD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E1A7DD; -webkit-box-shadow: 1px 1px 3px 2px #E1A7DD; box-shadow: 1px 1px 3px 2px #E1A7DD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E1A7DD; -webkit-box-shadow: 1px 1px 3px 2px #E1A7DD; box-shadow:1px 1px 3px 2px #E1A7DD;">
Div content here</div>
This text has color #E1A7DD on black background.
This text has color #E1A7DD on white background.
This text has black color on #E1A7DD background.
This text has white color on #E1A7DD background.