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