HEX: #ECF6EC
RGB: (236,246,236)
#ECF6EC contains red, green and blue colors in about the same proportion. Web safe color of #ECF6EC is #FFFFFF (or #FFF).
#ECF6EC color RGB value is (236,246,236).
RGB: (236,246,236) (93%,96%,93%)
R 236 of 255 = 93%
G 246 of 255 = 96%
B 236 of 255 = 93%
R + G + B ~ 94%. #ECF6EC is light color.
R + G + B =
236 + 246 + 236 = 718 (100%)
R 236 of 718 ~ 32.87%
G 246 of 718 ~ 34.26%
B 236 of 718 ~ 32.87%
#ECF6EC color CMYK value is (4,0,4,4).
CMYK: (4,0,4,4) C4M0Y4K4 (4%,0%,4%,4%) (0.04/0.00/0.04/0.04)
EC | F6 | EC | |
---|---|---|---|
RGB | 236 | 246 | 236 |
HSL | 120° | 35.71% | 94.51% |
HSB/HSV | 120° | 4.07% | 96.47% |
CMYK | 4.07% | 0.00% | 4.07% |
3.53% |
HEX | EC | F6 | EC |
Decimal | 236 | 246 | 236 |
Binary | 11101100 | 11110110 | 11101100 |
Octal | 354 | 366 | 354 |
Examples of css and html codes for elements with #ECF6EC color. Also use rgb(236,246,236) instead hex code.
.myTextColor { color: #ECF6EC; }
<p style="color:#ECF6EC">This sample text font color is #ECF6EC.</p>
This text font color is #ECF6EC.
.myBgColor { background-color: #ECF6EC; }
<div style="background-color:#ECF6EC">Inner text</div>
This div background color is #ECF6EC.
.myBorderColor { border: 1px solid #ECF6EC; }
<div style="border:3px solid #ECF6EC">Div</div>
This div border color is #ECF6EC.
.myOpacity80 { color: #ECF6EC; opacity: 0.8; }
<p style="color:#ECF6EC;opacity:0.8;">80%</p>
Text with #ECF6EC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ECF6EC;}
<p style="text-shadow: 3px 3px 1px #ECF6EC">Text here.</p>
This text has shadow with #ECF6EC color.
.textShadow {text-shadow: 3px 3px 1px #ECF6EC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ECF6EC, 5px 5px 20px red">Text here.</p>
This text has shadow with #ECF6EC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ECF6EC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ECF6EC, Direction=45, Strength=4)">Text</p>
This text has shadow with #ECF6EC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ECF6EC; -webkit-box-shadow: 1px 1px 3px 2px #ECF6EC; box-shadow: 1px 1px 3px 2px #ECF6EC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ECF6EC; -webkit-box-shadow: 1px 1px 3px 2px #ECF6EC; box-shadow:1px 1px 3px 2px #ECF6EC;">
Div content here</div>
This text has color #ECF6EC on black background.
This text has color #ECF6EC on white background.
This text has black color on #ECF6EC background.
This text has white color on #ECF6EC background.