HEX: #E5AECD
RGB: (229,174,205)
#E5AECD contains red, green and blue colors in about the same proportion. Web safe color of #E5AECD is #CC99CC (or #C9C).
#E5AECD color RGB value is (229,174,205).
RGB: (229,174,205) (90%,68%,80%)
R 229 of 255 = 90%
G 174 of 255 = 68%
B 205 of 255 = 80%
R + G + B ~ 79%. #E5AECD is quite light color.
R + G + B =
229 + 174 + 205 = 608 (100%)
R 229 of 608 ~ 37.66%
G 174 of 608 ~ 28.62%
B 205 of 608 ~ 33.72%
#E5AECD color CMYK value is (0,24,10,10).
CMYK: (0,24,10,10) C0M24Y10K10 (0%,24%,10%,10%) (0.00/0.24/0.10/0.10)
E5 | AE | CD | |
---|---|---|---|
RGB | 229 | 174 | 205 |
HSL | 326° | 51.40% | 79.02% |
HSB/HSV | 326° | 24.02% | 89.80% |
CMYK | 0.00% | 24.02% | 10.48% |
10.20% |
HEX | E5 | AE | CD |
Decimal | 229 | 174 | 205 |
Binary | 11100101 | 10101110 | 11001101 |
Octal | 345 | 256 | 315 |
Examples of css and html codes for elements with #E5AECD color. Also use rgb(229,174,205) instead hex code.
.myTextColor { color: #E5AECD; }
<p style="color:#E5AECD">This sample text font color is #E5AECD.</p>
This text font color is #E5AECD.
.myBgColor { background-color: #E5AECD; }
<div style="background-color:#E5AECD">Inner text</div>
This div background color is #E5AECD.
.myBorderColor { border: 1px solid #E5AECD; }
<div style="border:3px solid #E5AECD">Div</div>
This div border color is #E5AECD.
.myOpacity80 { color: #E5AECD; opacity: 0.8; }
<p style="color:#E5AECD;opacity:0.8;">80%</p>
Text with #E5AECD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E5AECD;}
<p style="text-shadow: 3px 3px 1px #E5AECD">Text here.</p>
This text has shadow with #E5AECD color.
.textShadow {text-shadow: 3px 3px 1px #E5AECD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E5AECD, 5px 5px 20px red">Text here.</p>
This text has shadow with #E5AECD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E5AECD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E5AECD, Direction=45, Strength=4)">Text</p>
This text has shadow with #E5AECD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E5AECD; -webkit-box-shadow: 1px 1px 3px 2px #E5AECD; box-shadow: 1px 1px 3px 2px #E5AECD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E5AECD; -webkit-box-shadow: 1px 1px 3px 2px #E5AECD; box-shadow:1px 1px 3px 2px #E5AECD;">
Div content here</div>
This text has color #E5AECD on black background.
This text has color #E5AECD on white background.
This text has black color on #E5AECD background.
This text has white color on #E5AECD background.