HEX: #E5CDDD
RGB: (229,205,221)
#E5CDDD contains red, green and blue colors in about the same proportion. Web safe color of #E5CDDD is #CCCCCC (or #CCC).
#E5CDDD color RGB value is (229,205,221).
RGB: (229,205,221) (90%,80%,87%)
R 229 of 255 = 90%
G 205 of 255 = 80%
B 221 of 255 = 87%
R + G + B ~ 86%. #E5CDDD is light color.
R + G + B =
229 + 205 + 221 = 655 (100%)
R 229 of 655 ~ 34.96%
G 205 of 655 ~ 31.3%
B 221 of 655 ~ 33.74%
#E5CDDD color CMYK value is (0,10,3,10).
CMYK: (0,10,3,10) C0M10Y3K10 (0%,10%,3%,10%) (0.00/0.10/0.03/0.10)
E5 | CD | DD | |
---|---|---|---|
RGB | 229 | 205 | 221 |
HSL | 320° | 31.58% | 85.10% |
HSB/HSV | 320° | 10.48% | 89.80% |
CMYK | 0.00% | 10.48% | 3.49% |
10.20% |
HEX | E5 | CD | DD |
Decimal | 229 | 205 | 221 |
Binary | 11100101 | 11001101 | 11011101 |
Octal | 345 | 315 | 335 |
Examples of css and html codes for elements with #E5CDDD color. Also use rgb(229,205,221) instead hex code.
.myTextColor { color: #E5CDDD; }
<p style="color:#E5CDDD">This sample text font color is #E5CDDD.</p>
This text font color is #E5CDDD.
.myBgColor { background-color: #E5CDDD; }
<div style="background-color:#E5CDDD">Inner text</div>
This div background color is #E5CDDD.
.myBorderColor { border: 1px solid #E5CDDD; }
<div style="border:3px solid #E5CDDD">Div</div>
This div border color is #E5CDDD.
.myOpacity80 { color: #E5CDDD; opacity: 0.8; }
<p style="color:#E5CDDD;opacity:0.8;">80%</p>
Text with #E5CDDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E5CDDD;}
<p style="text-shadow: 3px 3px 1px #E5CDDD">Text here.</p>
This text has shadow with #E5CDDD color.
.textShadow {text-shadow: 3px 3px 1px #E5CDDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E5CDDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #E5CDDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E5CDDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E5CDDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #E5CDDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E5CDDD; -webkit-box-shadow: 1px 1px 3px 2px #E5CDDD; box-shadow: 1px 1px 3px 2px #E5CDDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E5CDDD; -webkit-box-shadow: 1px 1px 3px 2px #E5CDDD; box-shadow:1px 1px 3px 2px #E5CDDD;">
Div content here</div>
This text has color #E5CDDD on black background.
This text has color #E5CDDD on white background.
This text has black color on #E5CDDD background.
This text has white color on #E5CDDD background.