HEX: #ECFBC7
RGB: (236,251,199)
#ECFBC7 contains red, green and blue colors in about the same proportion. Web safe color of #ECFBC7 is #FFFFCC (or #FFC).
#ECFBC7 color RGB value is (236,251,199).
RGB: (236,251,199) (93%,98%,78%)
R 236 of 255 = 93%
G 251 of 255 = 98%
B 199 of 255 = 78%
R + G + B ~ 90%. #ECFBC7 is light color.
R + G + B =
236 + 251 + 199 = 686 (100%)
R 236 of 686 ~ 34.4%
G 251 of 686 ~ 36.59%
B 199 of 686 ~ 29.01%
#ECFBC7 color CMYK value is (6,0,21,2).
CMYK: (6,0,21,2) C6M0Y21K2 (6%,0%,21%,2%) (0.06/0.00/0.21/0.02)
EC | FB | C7 | |
---|---|---|---|
RGB | 236 | 251 | 199 |
HSL | 77° | 86.67% | 88.24% |
HSB/HSV | 77° | 20.72% | 98.43% |
CMYK | 5.98% | 0.00% | 20.72% |
1.57% |
HEX | EC | FB | C7 |
Decimal | 236 | 251 | 199 |
Binary | 11101100 | 11111011 | 11000111 |
Octal | 354 | 373 | 307 |
Examples of css and html codes for elements with #ECFBC7 color. Also use rgb(236,251,199) instead hex code.
.myTextColor { color: #ECFBC7; }
<p style="color:#ECFBC7">This sample text font color is #ECFBC7.</p>
This text font color is #ECFBC7.
.myBgColor { background-color: #ECFBC7; }
<div style="background-color:#ECFBC7">Inner text</div>
This div background color is #ECFBC7.
.myBorderColor { border: 1px solid #ECFBC7; }
<div style="border:3px solid #ECFBC7">Div</div>
This div border color is #ECFBC7.
.myOpacity80 { color: #ECFBC7; opacity: 0.8; }
<p style="color:#ECFBC7;opacity:0.8;">80%</p>
Text with #ECFBC7 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ECFBC7;}
<p style="text-shadow: 3px 3px 1px #ECFBC7">Text here.</p>
This text has shadow with #ECFBC7 color.
.textShadow {text-shadow: 3px 3px 1px #ECFBC7, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ECFBC7, 5px 5px 20px red">Text here.</p>
This text has shadow with #ECFBC7 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ECFBC7, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ECFBC7, Direction=45, Strength=4)">Text</p>
This text has shadow with #ECFBC7 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ECFBC7; -webkit-box-shadow: 1px 1px 3px 2px #ECFBC7; box-shadow: 1px 1px 3px 2px #ECFBC7; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ECFBC7; -webkit-box-shadow: 1px 1px 3px 2px #ECFBC7; box-shadow:1px 1px 3px 2px #ECFBC7;">
Div content here</div>
This text has color #ECFBC7 on black background.
This text has color #ECFBC7 on white background.
This text has black color on #ECFBC7 background.
This text has white color on #ECFBC7 background.