HEX: #ECF5DD
RGB: (236,245,221)
#ECF5DD contains red, green and blue colors in about the same proportion. Web safe color of #ECF5DD is #FFFFCC (or #FFC).
#ECF5DD color RGB value is (236,245,221).
RGB: (236,245,221) (93%,96%,87%)
R 236 of 255 = 93%
G 245 of 255 = 96%
B 221 of 255 = 87%
R + G + B ~ 92%. #ECF5DD is light color.
R + G + B =
236 + 245 + 221 = 702 (100%)
R 236 of 702 ~ 33.62%
G 245 of 702 ~ 34.9%
B 221 of 702 ~ 31.48%
#ECF5DD color CMYK value is (4,0,10,4).
CMYK: (4,0,10,4) C4M0Y10K4 (4%,0%,10%,4%) (0.04/0.00/0.10/0.04)
EC | F5 | DD | |
---|---|---|---|
RGB | 236 | 245 | 221 |
HSL | 83° | 54.55% | 91.37% |
HSB/HSV | 83° | 9.80% | 96.08% |
CMYK | 3.67% | 0.00% | 9.80% |
3.92% |
HEX | EC | F5 | DD |
Decimal | 236 | 245 | 221 |
Binary | 11101100 | 11110101 | 11011101 |
Octal | 354 | 365 | 335 |
Examples of css and html codes for elements with #ECF5DD color. Also use rgb(236,245,221) instead hex code.
.myTextColor { color: #ECF5DD; }
<p style="color:#ECF5DD">This sample text font color is #ECF5DD.</p>
This text font color is #ECF5DD.
.myBgColor { background-color: #ECF5DD; }
<div style="background-color:#ECF5DD">Inner text</div>
This div background color is #ECF5DD.
.myBorderColor { border: 1px solid #ECF5DD; }
<div style="border:3px solid #ECF5DD">Div</div>
This div border color is #ECF5DD.
.myOpacity80 { color: #ECF5DD; opacity: 0.8; }
<p style="color:#ECF5DD;opacity:0.8;">80%</p>
Text with #ECF5DD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ECF5DD;}
<p style="text-shadow: 3px 3px 1px #ECF5DD">Text here.</p>
This text has shadow with #ECF5DD color.
.textShadow {text-shadow: 3px 3px 1px #ECF5DD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ECF5DD, 5px 5px 20px red">Text here.</p>
This text has shadow with #ECF5DD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ECF5DD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ECF5DD, Direction=45, Strength=4)">Text</p>
This text has shadow with #ECF5DD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ECF5DD; -webkit-box-shadow: 1px 1px 3px 2px #ECF5DD; box-shadow: 1px 1px 3px 2px #ECF5DD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ECF5DD; -webkit-box-shadow: 1px 1px 3px 2px #ECF5DD; box-shadow:1px 1px 3px 2px #ECF5DD;">
Div content here</div>
This text has color #ECF5DD on black background.
This text has color #ECF5DD on white background.
This text has black color on #ECF5DD background.
This text has white color on #ECF5DD background.