HEX: #ECD5CC
RGB: (236,213,204)
#ECD5CC contains red, green and blue colors in about the same proportion. Web safe color of #ECD5CC is #FFCCCC (or #FCC).
#ECD5CC color RGB value is (236,213,204).
RGB: (236,213,204) (93%,84%,80%)
R 236 of 255 = 93%
G 213 of 255 = 84%
B 204 of 255 = 80%
R + G + B ~ 86%. #ECD5CC is light color.
R + G + B =
236 + 213 + 204 = 653 (100%)
R 236 of 653 ~ 36.14%
G 213 of 653 ~ 32.62%
B 204 of 653 ~ 31.24%
#ECD5CC color CMYK value is (0,10,14,7).
CMYK: (0,10,14,7) C0M10Y14K7 (0%,10%,14%,7%) (0.00/0.10/0.14/0.07)
EC | D5 | CC | |
---|---|---|---|
RGB | 236 | 213 | 204 |
HSL | 17° | 45.71% | 86.27% |
HSB/HSV | 17° | 13.56% | 92.55% |
CMYK | 0.00% | 9.75% | 13.56% |
7.45% |
HEX | EC | D5 | CC |
Decimal | 236 | 213 | 204 |
Binary | 11101100 | 11010101 | 11001100 |
Octal | 354 | 325 | 314 |
Examples of css and html codes for elements with #ECD5CC color. Also use rgb(236,213,204) instead hex code.
.myTextColor { color: #ECD5CC; }
<p style="color:#ECD5CC">This sample text font color is #ECD5CC.</p>
This text font color is #ECD5CC.
.myBgColor { background-color: #ECD5CC; }
<div style="background-color:#ECD5CC">Inner text</div>
This div background color is #ECD5CC.
.myBorderColor { border: 1px solid #ECD5CC; }
<div style="border:3px solid #ECD5CC">Div</div>
This div border color is #ECD5CC.
.myOpacity80 { color: #ECD5CC; opacity: 0.8; }
<p style="color:#ECD5CC;opacity:0.8;">80%</p>
Text with #ECD5CC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ECD5CC;}
<p style="text-shadow: 3px 3px 1px #ECD5CC">Text here.</p>
This text has shadow with #ECD5CC color.
.textShadow {text-shadow: 3px 3px 1px #ECD5CC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ECD5CC, 5px 5px 20px red">Text here.</p>
This text has shadow with #ECD5CC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ECD5CC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ECD5CC, Direction=45, Strength=4)">Text</p>
This text has shadow with #ECD5CC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ECD5CC; -webkit-box-shadow: 1px 1px 3px 2px #ECD5CC; box-shadow: 1px 1px 3px 2px #ECD5CC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ECD5CC; -webkit-box-shadow: 1px 1px 3px 2px #ECD5CC; box-shadow:1px 1px 3px 2px #ECD5CC;">
Div content here</div>
This text has color #ECD5CC on black background.
This text has color #ECD5CC on white background.
This text has black color on #ECD5CC background.
This text has white color on #ECD5CC background.