HEX: #ECDDE5
RGB: (236,221,229)
#ECDDE5 contains red, green and blue colors in about the same proportion. Web safe color of #ECDDE5 is #FFCCCC (or #FCC).
#ECDDE5 color RGB value is (236,221,229).
RGB: (236,221,229) (93%,87%,90%)
R 236 of 255 = 93%
G 221 of 255 = 87%
B 229 of 255 = 90%
R + G + B ~ 90%. #ECDDE5 is light color.
R + G + B =
236 + 221 + 229 = 686 (100%)
R 236 of 686 ~ 34.4%
G 221 of 686 ~ 32.22%
B 229 of 686 ~ 33.38%
#ECDDE5 color CMYK value is (0,6,3,7).
CMYK: (0,6,3,7) C0M6Y3K7 (0%,6%,3%,7%) (0.00/0.06/0.03/0.07)
EC | DD | E5 | |
---|---|---|---|
RGB | 236 | 221 | 229 |
HSL | 328° | 28.30% | 89.61% |
HSB/HSV | 328° | 6.36% | 92.55% |
CMYK | 0.00% | 6.36% | 2.97% |
7.45% |
HEX | EC | DD | E5 |
Decimal | 236 | 221 | 229 |
Binary | 11101100 | 11011101 | 11100101 |
Octal | 354 | 335 | 345 |
Examples of css and html codes for elements with #ECDDE5 color. Also use rgb(236,221,229) instead hex code.
.myTextColor { color: #ECDDE5; }
<p style="color:#ECDDE5">This sample text font color is #ECDDE5.</p>
This text font color is #ECDDE5.
.myBgColor { background-color: #ECDDE5; }
<div style="background-color:#ECDDE5">Inner text</div>
This div background color is #ECDDE5.
.myBorderColor { border: 1px solid #ECDDE5; }
<div style="border:3px solid #ECDDE5">Div</div>
This div border color is #ECDDE5.
.myOpacity80 { color: #ECDDE5; opacity: 0.8; }
<p style="color:#ECDDE5;opacity:0.8;">80%</p>
Text with #ECDDE5 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ECDDE5;}
<p style="text-shadow: 3px 3px 1px #ECDDE5">Text here.</p>
This text has shadow with #ECDDE5 color.
.textShadow {text-shadow: 3px 3px 1px #ECDDE5, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ECDDE5, 5px 5px 20px red">Text here.</p>
This text has shadow with #ECDDE5 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ECDDE5, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ECDDE5, Direction=45, Strength=4)">Text</p>
This text has shadow with #ECDDE5 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ECDDE5; -webkit-box-shadow: 1px 1px 3px 2px #ECDDE5; box-shadow: 1px 1px 3px 2px #ECDDE5; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ECDDE5; -webkit-box-shadow: 1px 1px 3px 2px #ECDDE5; box-shadow:1px 1px 3px 2px #ECDDE5;">
Div content here</div>
This text has color #ECDDE5 on black background.
This text has color #ECDDE5 on white background.
This text has black color on #ECDDE5 background.
This text has white color on #ECDDE5 background.