HEX: #EBD5DC
RGB: (235,213,220)
#EBD5DC contains red, green and blue colors in about the same proportion. Web safe color of #EBD5DC is #FFCCCC (or #FCC).
#EBD5DC color RGB value is (235,213,220).
RGB: (235,213,220) (92%,84%,86%)
R 235 of 255 = 92%
G 213 of 255 = 84%
B 220 of 255 = 86%
R + G + B ~ 87%. #EBD5DC is light color.
R + G + B =
235 + 213 + 220 = 668 (100%)
R 235 of 668 ~ 35.18%
G 213 of 668 ~ 31.89%
B 220 of 668 ~ 32.93%
#EBD5DC color CMYK value is (0,9,6,8).
CMYK: (0,9,6,8) C0M9Y6K8 (0%,9%,6%,8%) (0.00/0.09/0.06/0.08)
EB | D5 | DC | |
---|---|---|---|
RGB | 235 | 213 | 220 |
HSL | 341° | 35.48% | 87.84% |
HSB/HSV | 341° | 9.36% | 92.16% |
CMYK | 0.00% | 9.36% | 6.38% |
7.84% |
HEX | EB | D5 | DC |
Decimal | 235 | 213 | 220 |
Binary | 11101011 | 11010101 | 11011100 |
Octal | 353 | 325 | 334 |
Examples of css and html codes for elements with #EBD5DC color. Also use rgb(235,213,220) instead hex code.
.myTextColor { color: #EBD5DC; }
<p style="color:#EBD5DC">This sample text font color is #EBD5DC.</p>
This text font color is #EBD5DC.
.myBgColor { background-color: #EBD5DC; }
<div style="background-color:#EBD5DC">Inner text</div>
This div background color is #EBD5DC.
.myBorderColor { border: 1px solid #EBD5DC; }
<div style="border:3px solid #EBD5DC">Div</div>
This div border color is #EBD5DC.
.myOpacity80 { color: #EBD5DC; opacity: 0.8; }
<p style="color:#EBD5DC;opacity:0.8;">80%</p>
Text with #EBD5DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBD5DC;}
<p style="text-shadow: 3px 3px 1px #EBD5DC">Text here.</p>
This text has shadow with #EBD5DC color.
.textShadow {text-shadow: 3px 3px 1px #EBD5DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBD5DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBD5DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBD5DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBD5DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBD5DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBD5DC; -webkit-box-shadow: 1px 1px 3px 2px #EBD5DC; box-shadow: 1px 1px 3px 2px #EBD5DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBD5DC; -webkit-box-shadow: 1px 1px 3px 2px #EBD5DC; box-shadow:1px 1px 3px 2px #EBD5DC;">
Div content here</div>
This text has color #EBD5DC on black background.
This text has color #EBD5DC on white background.
This text has black color on #EBD5DC background.
This text has white color on #EBD5DC background.