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