HEX: #ECF0DB
RGB: (236,240,219)
#ECF0DB contains red, green and blue colors in about the same proportion. Web safe color of #ECF0DB is #FFFFCC (or #FFC).
#ECF0DB color RGB value is (236,240,219).
RGB: (236,240,219) (93%,94%,86%)
R 236 of 255 = 93%
G 240 of 255 = 94%
B 219 of 255 = 86%
R + G + B ~ 91%. #ECF0DB is light color.
R + G + B =
236 + 240 + 219 = 695 (100%)
R 236 of 695 ~ 33.96%
G 240 of 695 ~ 34.53%
B 219 of 695 ~ 31.51%
#ECF0DB color CMYK value is (2,0,9,6).
CMYK: (2,0,9,6) C2M0Y9K6 (2%,0%,9%,6%) (0.02/0.00/0.09/0.06)
EC | F0 | DB | |
---|---|---|---|
RGB | 236 | 240 | 219 |
HSL | 71° | 41.18% | 90.00% |
HSB/HSV | 71° | 8.75% | 94.12% |
CMYK | 1.67% | 0.00% | 8.75% |
5.88% |
HEX | EC | F0 | DB |
Decimal | 236 | 240 | 219 |
Binary | 11101100 | 11110000 | 11011011 |
Octal | 354 | 360 | 333 |
Examples of css and html codes for elements with #ECF0DB color. Also use rgb(236,240,219) instead hex code.
.myTextColor { color: #ECF0DB; }
<p style="color:#ECF0DB">This sample text font color is #ECF0DB.</p>
This text font color is #ECF0DB.
.myBgColor { background-color: #ECF0DB; }
<div style="background-color:#ECF0DB">Inner text</div>
This div background color is #ECF0DB.
.myBorderColor { border: 1px solid #ECF0DB; }
<div style="border:3px solid #ECF0DB">Div</div>
This div border color is #ECF0DB.
.myOpacity80 { color: #ECF0DB; opacity: 0.8; }
<p style="color:#ECF0DB;opacity:0.8;">80%</p>
Text with #ECF0DB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ECF0DB;}
<p style="text-shadow: 3px 3px 1px #ECF0DB">Text here.</p>
This text has shadow with #ECF0DB color.
.textShadow {text-shadow: 3px 3px 1px #ECF0DB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ECF0DB, 5px 5px 20px red">Text here.</p>
This text has shadow with #ECF0DB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ECF0DB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ECF0DB, Direction=45, Strength=4)">Text</p>
This text has shadow with #ECF0DB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ECF0DB; -webkit-box-shadow: 1px 1px 3px 2px #ECF0DB; box-shadow: 1px 1px 3px 2px #ECF0DB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ECF0DB; -webkit-box-shadow: 1px 1px 3px 2px #ECF0DB; box-shadow:1px 1px 3px 2px #ECF0DB;">
Div content here</div>
This text has color #ECF0DB on black background.
This text has color #ECF0DB on white background.
This text has black color on #ECF0DB background.
This text has white color on #ECF0DB background.