HEX: #ECC7DC
RGB: (236,199,220)
#ECC7DC contains red, green and blue colors in about the same proportion. Web safe color of #ECC7DC is #FFCCCC (or #FCC).
#ECC7DC color RGB value is (236,199,220).
RGB: (236,199,220) (93%,78%,86%)
R 236 of 255 = 93%
G 199 of 255 = 78%
B 220 of 255 = 86%
R + G + B ~ 86%. #ECC7DC is light color.
R + G + B =
236 + 199 + 220 = 655 (100%)
R 236 of 655 ~ 36.03%
G 199 of 655 ~ 30.38%
B 220 of 655 ~ 33.59%
#ECC7DC color CMYK value is (0,16,7,7).
CMYK: (0,16,7,7) C0M16Y7K7 (0%,16%,7%,7%) (0.00/0.16/0.07/0.07)
EC | C7 | DC | |
---|---|---|---|
RGB | 236 | 199 | 220 |
HSL | 326° | 49.33% | 85.29% |
HSB/HSV | 326° | 15.68% | 92.55% |
CMYK | 0.00% | 15.68% | 6.78% |
7.45% |
HEX | EC | C7 | DC |
Decimal | 236 | 199 | 220 |
Binary | 11101100 | 11000111 | 11011100 |
Octal | 354 | 307 | 334 |
Examples of css and html codes for elements with #ECC7DC color. Also use rgb(236,199,220) instead hex code.
.myTextColor { color: #ECC7DC; }
<p style="color:#ECC7DC">This sample text font color is #ECC7DC.</p>
This text font color is #ECC7DC.
.myBgColor { background-color: #ECC7DC; }
<div style="background-color:#ECC7DC">Inner text</div>
This div background color is #ECC7DC.
.myBorderColor { border: 1px solid #ECC7DC; }
<div style="border:3px solid #ECC7DC">Div</div>
This div border color is #ECC7DC.
.myOpacity80 { color: #ECC7DC; opacity: 0.8; }
<p style="color:#ECC7DC;opacity:0.8;">80%</p>
Text with #ECC7DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ECC7DC;}
<p style="text-shadow: 3px 3px 1px #ECC7DC">Text here.</p>
This text has shadow with #ECC7DC color.
.textShadow {text-shadow: 3px 3px 1px #ECC7DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ECC7DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #ECC7DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ECC7DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ECC7DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #ECC7DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ECC7DC; -webkit-box-shadow: 1px 1px 3px 2px #ECC7DC; box-shadow: 1px 1px 3px 2px #ECC7DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ECC7DC; -webkit-box-shadow: 1px 1px 3px 2px #ECC7DC; box-shadow:1px 1px 3px 2px #ECC7DC;">
Div content here</div>
This text has color #ECC7DC on black background.
This text has color #ECC7DC on white background.
This text has black color on #ECC7DC background.
This text has white color on #ECC7DC background.