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