HEX: #EFDBDA
RGB: (239,219,218)
#EFDBDA contains red, green and blue colors in about the same proportion. Web safe color of #EFDBDA is #FFCCCC (or #FCC).
#EFDBDA color RGB value is (239,219,218).
RGB: (239,219,218) (94%,86%,85%)
R 239 of 255 = 94%
G 219 of 255 = 86%
B 218 of 255 = 85%
R + G + B ~ 88%. #EFDBDA is light color.
R + G + B =
239 + 219 + 218 = 676 (100%)
R 239 of 676 ~ 35.36%
G 219 of 676 ~ 32.4%
B 218 of 676 ~ 32.25%
#EFDBDA color CMYK value is (0,8,9,6).
CMYK: (0,8,9,6) C0M8Y9K6 (0%,8%,9%,6%) (0.00/0.08/0.09/0.06)
EF | DB | DA | |
---|---|---|---|
RGB | 239 | 219 | 218 |
HSL | 3° | 39.62% | 89.61% |
HSB/HSV | 3° | 8.79% | 93.73% |
CMYK | 0.00% | 8.37% | 8.79% |
6.27% |
HEX | EF | DB | DA |
Decimal | 239 | 219 | 218 |
Binary | 11101111 | 11011011 | 11011010 |
Octal | 357 | 333 | 332 |
Examples of css and html codes for elements with #EFDBDA color. Also use rgb(239,219,218) instead hex code.
.myTextColor { color: #EFDBDA; }
<p style="color:#EFDBDA">This sample text font color is #EFDBDA.</p>
This text font color is #EFDBDA.
.myBgColor { background-color: #EFDBDA; }
<div style="background-color:#EFDBDA">Inner text</div>
This div background color is #EFDBDA.
.myBorderColor { border: 1px solid #EFDBDA; }
<div style="border:3px solid #EFDBDA">Div</div>
This div border color is #EFDBDA.
.myOpacity80 { color: #EFDBDA; opacity: 0.8; }
<p style="color:#EFDBDA;opacity:0.8;">80%</p>
Text with #EFDBDA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFDBDA;}
<p style="text-shadow: 3px 3px 1px #EFDBDA">Text here.</p>
This text has shadow with #EFDBDA color.
.textShadow {text-shadow: 3px 3px 1px #EFDBDA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFDBDA, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFDBDA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFDBDA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFDBDA, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFDBDA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFDBDA; -webkit-box-shadow: 1px 1px 3px 2px #EFDBDA; box-shadow: 1px 1px 3px 2px #EFDBDA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFDBDA; -webkit-box-shadow: 1px 1px 3px 2px #EFDBDA; box-shadow:1px 1px 3px 2px #EFDBDA;">
Div content here</div>
This text has color #EFDBDA on black background.
This text has color #EFDBDA on white background.
This text has black color on #EFDBDA background.
This text has white color on #EFDBDA background.