HEX: #ECEBD6
RGB: (236,235,214)
#ECEBD6 contains red, green and blue colors in about the same proportion. Web safe color of #ECEBD6 is #FFFFCC (or #FFC).
#ECEBD6 color RGB value is (236,235,214).
RGB: (236,235,214) (93%,92%,84%)
R 236 of 255 = 93%
G 235 of 255 = 92%
B 214 of 255 = 84%
R + G + B ~ 90%. #ECEBD6 is light color.
R + G + B =
236 + 235 + 214 = 685 (100%)
R 236 of 685 ~ 34.45%
G 235 of 685 ~ 34.31%
B 214 of 685 ~ 31.24%
#ECEBD6 color CMYK value is (0,0,9,7).
CMYK: (0,0,9,7) C0M0Y9K7 (0%,0%,9%,7%) (0.00/0.00/0.09/0.07)
EC | EB | D6 | |
---|---|---|---|
RGB | 236 | 235 | 214 |
HSL | 57° | 36.67% | 88.24% |
HSB/HSV | 57° | 9.32% | 92.55% |
CMYK | 0.00% | 0.42% | 9.32% |
7.45% |
HEX | EC | EB | D6 |
Decimal | 236 | 235 | 214 |
Binary | 11101100 | 11101011 | 11010110 |
Octal | 354 | 353 | 326 |
Examples of css and html codes for elements with #ECEBD6 color. Also use rgb(236,235,214) instead hex code.
.myTextColor { color: #ECEBD6; }
<p style="color:#ECEBD6">This sample text font color is #ECEBD6.</p>
This text font color is #ECEBD6.
.myBgColor { background-color: #ECEBD6; }
<div style="background-color:#ECEBD6">Inner text</div>
This div background color is #ECEBD6.
.myBorderColor { border: 1px solid #ECEBD6; }
<div style="border:3px solid #ECEBD6">Div</div>
This div border color is #ECEBD6.
.myOpacity80 { color: #ECEBD6; opacity: 0.8; }
<p style="color:#ECEBD6;opacity:0.8;">80%</p>
Text with #ECEBD6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ECEBD6;}
<p style="text-shadow: 3px 3px 1px #ECEBD6">Text here.</p>
This text has shadow with #ECEBD6 color.
.textShadow {text-shadow: 3px 3px 1px #ECEBD6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ECEBD6, 5px 5px 20px red">Text here.</p>
This text has shadow with #ECEBD6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ECEBD6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ECEBD6, Direction=45, Strength=4)">Text</p>
This text has shadow with #ECEBD6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ECEBD6; -webkit-box-shadow: 1px 1px 3px 2px #ECEBD6; box-shadow: 1px 1px 3px 2px #ECEBD6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ECEBD6; -webkit-box-shadow: 1px 1px 3px 2px #ECEBD6; box-shadow:1px 1px 3px 2px #ECEBD6;">
Div content here</div>
This text has color #ECEBD6 on black background.
This text has color #ECEBD6 on white background.
This text has black color on #ECEBD6 background.
This text has white color on #ECEBD6 background.