HEX: #EFD7DC
RGB: (239,215,220)
#EFD7DC contains red, green and blue colors in about the same proportion. Web safe color of #EFD7DC is #FFCCCC (or #FCC).
#EFD7DC color RGB value is (239,215,220).
RGB: (239,215,220) (94%,84%,86%)
R 239 of 255 = 94%
G 215 of 255 = 84%
B 220 of 255 = 86%
R + G + B ~ 88%. #EFD7DC is light color.
R + G + B =
239 + 215 + 220 = 674 (100%)
R 239 of 674 ~ 35.46%
G 215 of 674 ~ 31.9%
B 220 of 674 ~ 32.64%
#EFD7DC color CMYK value is (0,10,8,6).
CMYK: (0,10,8,6) C0M10Y8K6 (0%,10%,8%,6%) (0.00/0.10/0.08/0.06)
EF | D7 | DC | |
---|---|---|---|
RGB | 239 | 215 | 220 |
HSL | 348° | 42.86% | 89.02% |
HSB/HSV | 348° | 10.04% | 93.73% |
CMYK | 0.00% | 10.04% | 7.95% |
6.27% |
HEX | EF | D7 | DC |
Decimal | 239 | 215 | 220 |
Binary | 11101111 | 11010111 | 11011100 |
Octal | 357 | 327 | 334 |
Examples of css and html codes for elements with #EFD7DC color. Also use rgb(239,215,220) instead hex code.
.myTextColor { color: #EFD7DC; }
<p style="color:#EFD7DC">This sample text font color is #EFD7DC.</p>
This text font color is #EFD7DC.
.myBgColor { background-color: #EFD7DC; }
<div style="background-color:#EFD7DC">Inner text</div>
This div background color is #EFD7DC.
.myBorderColor { border: 1px solid #EFD7DC; }
<div style="border:3px solid #EFD7DC">Div</div>
This div border color is #EFD7DC.
.myOpacity80 { color: #EFD7DC; opacity: 0.8; }
<p style="color:#EFD7DC;opacity:0.8;">80%</p>
Text with #EFD7DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFD7DC;}
<p style="text-shadow: 3px 3px 1px #EFD7DC">Text here.</p>
This text has shadow with #EFD7DC color.
.textShadow {text-shadow: 3px 3px 1px #EFD7DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFD7DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFD7DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFD7DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFD7DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFD7DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFD7DC; -webkit-box-shadow: 1px 1px 3px 2px #EFD7DC; box-shadow: 1px 1px 3px 2px #EFD7DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFD7DC; -webkit-box-shadow: 1px 1px 3px 2px #EFD7DC; box-shadow:1px 1px 3px 2px #EFD7DC;">
Div content here</div>
This text has color #EFD7DC on black background.
This text has color #EFD7DC on white background.
This text has black color on #EFD7DC background.
This text has white color on #EFD7DC background.