HEX: #EBD4DE
RGB: (235,212,222)
#EBD4DE contains red, green and blue colors in about the same proportion. Web safe color of #EBD4DE is #FFCCCC (or #FCC).
#EBD4DE color RGB value is (235,212,222).
RGB: (235,212,222) (92%,83%,87%)
R 235 of 255 = 92%
G 212 of 255 = 83%
B 222 of 255 = 87%
R + G + B ~ 87%. #EBD4DE is light color.
R + G + B =
235 + 212 + 222 = 669 (100%)
R 235 of 669 ~ 35.13%
G 212 of 669 ~ 31.69%
B 222 of 669 ~ 33.18%
#EBD4DE color CMYK value is (0,10,6,8).
CMYK: (0,10,6,8) C0M10Y6K8 (0%,10%,6%,8%) (0.00/0.10/0.06/0.08)
EB | D4 | DE | |
---|---|---|---|
RGB | 235 | 212 | 222 |
HSL | 334° | 36.51% | 87.65% |
HSB/HSV | 334° | 9.79% | 92.16% |
CMYK | 0.00% | 9.79% | 5.53% |
7.84% |
HEX | EB | D4 | DE |
Decimal | 235 | 212 | 222 |
Binary | 11101011 | 11010100 | 11011110 |
Octal | 353 | 324 | 336 |
Examples of css and html codes for elements with #EBD4DE color. Also use rgb(235,212,222) instead hex code.
.myTextColor { color: #EBD4DE; }
<p style="color:#EBD4DE">This sample text font color is #EBD4DE.</p>
This text font color is #EBD4DE.
.myBgColor { background-color: #EBD4DE; }
<div style="background-color:#EBD4DE">Inner text</div>
This div background color is #EBD4DE.
.myBorderColor { border: 1px solid #EBD4DE; }
<div style="border:3px solid #EBD4DE">Div</div>
This div border color is #EBD4DE.
.myOpacity80 { color: #EBD4DE; opacity: 0.8; }
<p style="color:#EBD4DE;opacity:0.8;">80%</p>
Text with #EBD4DE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBD4DE;}
<p style="text-shadow: 3px 3px 1px #EBD4DE">Text here.</p>
This text has shadow with #EBD4DE color.
.textShadow {text-shadow: 3px 3px 1px #EBD4DE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBD4DE, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBD4DE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBD4DE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBD4DE, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBD4DE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBD4DE; -webkit-box-shadow: 1px 1px 3px 2px #EBD4DE; box-shadow: 1px 1px 3px 2px #EBD4DE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBD4DE; -webkit-box-shadow: 1px 1px 3px 2px #EBD4DE; box-shadow:1px 1px 3px 2px #EBD4DE;">
Div content here</div>
This text has color #EBD4DE on black background.
This text has color #EBD4DE on white background.
This text has black color on #EBD4DE background.
This text has white color on #EBD4DE background.