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