HEX: #ECE6BC
RGB: (236,230,188)
#ECE6BC contains red, green and blue colors in about the same proportion. Web safe color of #ECE6BC is #FFCCCC (or #FCC).
#ECE6BC color RGB value is (236,230,188).
RGB: (236,230,188) (93%,90%,74%)
R 236 of 255 = 93%
G 230 of 255 = 90%
B 188 of 255 = 74%
R + G + B ~ 86%. #ECE6BC is light color.
R + G + B =
236 + 230 + 188 = 654 (100%)
R 236 of 654 ~ 36.09%
G 230 of 654 ~ 35.17%
B 188 of 654 ~ 28.75%
#ECE6BC color CMYK value is (0,3,20,7).
CMYK: (0,3,20,7) C0M3Y20K7 (0%,3%,20%,7%) (0.00/0.03/0.20/0.07)
EC | E6 | BC | |
---|---|---|---|
RGB | 236 | 230 | 188 |
HSL | 53° | 55.81% | 83.14% |
HSB/HSV | 53° | 20.34% | 92.55% |
CMYK | 0.00% | 2.54% | 20.34% |
7.45% |
HEX | EC | E6 | BC |
Decimal | 236 | 230 | 188 |
Binary | 11101100 | 11100110 | 10111100 |
Octal | 354 | 346 | 274 |
Examples of css and html codes for elements with #ECE6BC color. Also use rgb(236,230,188) instead hex code.
.myTextColor { color: #ECE6BC; }
<p style="color:#ECE6BC">This sample text font color is #ECE6BC.</p>
This text font color is #ECE6BC.
.myBgColor { background-color: #ECE6BC; }
<div style="background-color:#ECE6BC">Inner text</div>
This div background color is #ECE6BC.
.myBorderColor { border: 1px solid #ECE6BC; }
<div style="border:3px solid #ECE6BC">Div</div>
This div border color is #ECE6BC.
.myOpacity80 { color: #ECE6BC; opacity: 0.8; }
<p style="color:#ECE6BC;opacity:0.8;">80%</p>
Text with #ECE6BC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ECE6BC;}
<p style="text-shadow: 3px 3px 1px #ECE6BC">Text here.</p>
This text has shadow with #ECE6BC color.
.textShadow {text-shadow: 3px 3px 1px #ECE6BC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ECE6BC, 5px 5px 20px red">Text here.</p>
This text has shadow with #ECE6BC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ECE6BC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ECE6BC, Direction=45, Strength=4)">Text</p>
This text has shadow with #ECE6BC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ECE6BC; -webkit-box-shadow: 1px 1px 3px 2px #ECE6BC; box-shadow: 1px 1px 3px 2px #ECE6BC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ECE6BC; -webkit-box-shadow: 1px 1px 3px 2px #ECE6BC; box-shadow:1px 1px 3px 2px #ECE6BC;">
Div content here</div>
This text has color #ECE6BC on black background.
This text has color #ECE6BC on white background.
This text has black color on #ECE6BC background.
This text has white color on #ECE6BC background.