HEX: #EBEDD1
RGB: (235,237,209)
#EBEDD1 contains red, green and blue colors in about the same proportion. Web safe color of #EBEDD1 is #FFFFCC (or #FFC).
#EBEDD1 color RGB value is (235,237,209).
RGB: (235,237,209) (92%,93%,82%)
R 235 of 255 = 92%
G 237 of 255 = 93%
B 209 of 255 = 82%
R + G + B ~ 89%. #EBEDD1 is light color.
R + G + B =
235 + 237 + 209 = 681 (100%)
R 235 of 681 ~ 34.51%
G 237 of 681 ~ 34.8%
B 209 of 681 ~ 30.69%
#EBEDD1 color CMYK value is (1,0,12,7).
CMYK: (1,0,12,7) C1M0Y12K7 (1%,0%,12%,7%) (0.01/0.00/0.12/0.07)
EB | ED | D1 | |
---|---|---|---|
RGB | 235 | 237 | 209 |
HSL | 64° | 43.75% | 87.45% |
HSB/HSV | 64° | 11.81% | 92.94% |
CMYK | 0.84% | 0.00% | 11.81% |
7.06% |
HEX | EB | ED | D1 |
Decimal | 235 | 237 | 209 |
Binary | 11101011 | 11101101 | 11010001 |
Octal | 353 | 355 | 321 |
Examples of css and html codes for elements with #EBEDD1 color. Also use rgb(235,237,209) instead hex code.
.myTextColor { color: #EBEDD1; }
<p style="color:#EBEDD1">This sample text font color is #EBEDD1.</p>
This text font color is #EBEDD1.
.myBgColor { background-color: #EBEDD1; }
<div style="background-color:#EBEDD1">Inner text</div>
This div background color is #EBEDD1.
.myBorderColor { border: 1px solid #EBEDD1; }
<div style="border:3px solid #EBEDD1">Div</div>
This div border color is #EBEDD1.
.myOpacity80 { color: #EBEDD1; opacity: 0.8; }
<p style="color:#EBEDD1;opacity:0.8;">80%</p>
Text with #EBEDD1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBEDD1;}
<p style="text-shadow: 3px 3px 1px #EBEDD1">Text here.</p>
This text has shadow with #EBEDD1 color.
.textShadow {text-shadow: 3px 3px 1px #EBEDD1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBEDD1, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBEDD1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBEDD1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBEDD1, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBEDD1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBEDD1; -webkit-box-shadow: 1px 1px 3px 2px #EBEDD1; box-shadow: 1px 1px 3px 2px #EBEDD1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBEDD1; -webkit-box-shadow: 1px 1px 3px 2px #EBEDD1; box-shadow:1px 1px 3px 2px #EBEDD1;">
Div content here</div>
This text has color #EBEDD1 on black background.
This text has color #EBEDD1 on white background.
This text has black color on #EBEDD1 background.
This text has white color on #EBEDD1 background.