HEX: #EBE7DB
RGB: (235,231,219)
#EBE7DB contains red, green and blue colors in about the same proportion. Web safe color of #EBE7DB is #FFFFCC (or #FFC).
#EBE7DB color RGB value is (235,231,219).
RGB: (235,231,219) (92%,91%,86%)
R 235 of 255 = 92%
G 231 of 255 = 91%
B 219 of 255 = 86%
R + G + B ~ 90%. #EBE7DB is light color.
R + G + B =
235 + 231 + 219 = 685 (100%)
R 235 of 685 ~ 34.31%
G 231 of 685 ~ 33.72%
B 219 of 685 ~ 31.97%
#EBE7DB color CMYK value is (0,2,7,8).
CMYK: (0,2,7,8) C0M2Y7K8 (0%,2%,7%,8%) (0.00/0.02/0.07/0.08)
EB | E7 | DB | |
---|---|---|---|
RGB | 235 | 231 | 219 |
HSL | 45° | 28.57% | 89.02% |
HSB/HSV | 45° | 6.81% | 92.16% |
CMYK | 0.00% | 1.70% | 6.81% |
7.84% |
HEX | EB | E7 | DB |
Decimal | 235 | 231 | 219 |
Binary | 11101011 | 11100111 | 11011011 |
Octal | 353 | 347 | 333 |
Examples of css and html codes for elements with #EBE7DB color. Also use rgb(235,231,219) instead hex code.
.myTextColor { color: #EBE7DB; }
<p style="color:#EBE7DB">This sample text font color is #EBE7DB.</p>
This text font color is #EBE7DB.
.myBgColor { background-color: #EBE7DB; }
<div style="background-color:#EBE7DB">Inner text</div>
This div background color is #EBE7DB.
.myBorderColor { border: 1px solid #EBE7DB; }
<div style="border:3px solid #EBE7DB">Div</div>
This div border color is #EBE7DB.
.myOpacity80 { color: #EBE7DB; opacity: 0.8; }
<p style="color:#EBE7DB;opacity:0.8;">80%</p>
Text with #EBE7DB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBE7DB;}
<p style="text-shadow: 3px 3px 1px #EBE7DB">Text here.</p>
This text has shadow with #EBE7DB color.
.textShadow {text-shadow: 3px 3px 1px #EBE7DB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBE7DB, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBE7DB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBE7DB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBE7DB, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBE7DB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBE7DB; -webkit-box-shadow: 1px 1px 3px 2px #EBE7DB; box-shadow: 1px 1px 3px 2px #EBE7DB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBE7DB; -webkit-box-shadow: 1px 1px 3px 2px #EBE7DB; box-shadow:1px 1px 3px 2px #EBE7DB;">
Div content here</div>
This text has color #EBE7DB on black background.
This text has color #EBE7DB on white background.
This text has black color on #EBE7DB background.
This text has white color on #EBE7DB background.