HEX: #ECFDF6
RGB: (236,253,246)
#ECFDF6 contains red, green and blue colors in about the same proportion. Web safe color of #ECFDF6 is #FFFFFF (or #FFF).
#ECFDF6 color RGB value is (236,253,246).
RGB: (236,253,246) (93%,99%,96%)
R 236 of 255 = 93%
G 253 of 255 = 99%
B 246 of 255 = 96%
R + G + B ~ 96%. #ECFDF6 is light color.
R + G + B =
236 + 253 + 246 = 735 (100%)
R 236 of 735 ~ 32.11%
G 253 of 735 ~ 34.42%
B 246 of 735 ~ 33.47%
#ECFDF6 color CMYK value is (7,0,3,1).
CMYK: (7,0,3,1) C7M0Y3K1 (7%,0%,3%,1%) (0.07/0.00/0.03/0.01)
EC | FD | F6 | |
---|---|---|---|
RGB | 236 | 253 | 246 |
HSL | 155° | 80.95% | 95.88% |
HSB/HSV | 155° | 6.72% | 99.22% |
CMYK | 6.72% | 0.00% | 2.77% |
0.78% |
HEX | EC | FD | F6 |
Decimal | 236 | 253 | 246 |
Binary | 11101100 | 11111101 | 11110110 |
Octal | 354 | 375 | 366 |
Examples of css and html codes for elements with #ECFDF6 color. Also use rgb(236,253,246) instead hex code.
.myTextColor { color: #ECFDF6; }
<p style="color:#ECFDF6">This sample text font color is #ECFDF6.</p>
This text font color is #ECFDF6.
.myBgColor { background-color: #ECFDF6; }
<div style="background-color:#ECFDF6">Inner text</div>
This div background color is #ECFDF6.
.myBorderColor { border: 1px solid #ECFDF6; }
<div style="border:3px solid #ECFDF6">Div</div>
This div border color is #ECFDF6.
.myOpacity80 { color: #ECFDF6; opacity: 0.8; }
<p style="color:#ECFDF6;opacity:0.8;">80%</p>
Text with #ECFDF6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ECFDF6;}
<p style="text-shadow: 3px 3px 1px #ECFDF6">Text here.</p>
This text has shadow with #ECFDF6 color.
.textShadow {text-shadow: 3px 3px 1px #ECFDF6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ECFDF6, 5px 5px 20px red">Text here.</p>
This text has shadow with #ECFDF6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ECFDF6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ECFDF6, Direction=45, Strength=4)">Text</p>
This text has shadow with #ECFDF6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ECFDF6; -webkit-box-shadow: 1px 1px 3px 2px #ECFDF6; box-shadow: 1px 1px 3px 2px #ECFDF6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ECFDF6; -webkit-box-shadow: 1px 1px 3px 2px #ECFDF6; box-shadow:1px 1px 3px 2px #ECFDF6;">
Div content here</div>
This text has color #ECFDF6 on black background.
This text has color #ECFDF6 on white background.
This text has black color on #ECFDF6 background.
This text has white color on #ECFDF6 background.