HEX: #EFD8CE
RGB: (239,216,206)
#EFD8CE contains red, green and blue colors in about the same proportion. Web safe color of #EFD8CE is #FFCCCC (or #FCC).
#EFD8CE color RGB value is (239,216,206).
RGB: (239,216,206) (94%,85%,81%)
R 239 of 255 = 94%
G 216 of 255 = 85%
B 206 of 255 = 81%
R + G + B ~ 87%. #EFD8CE is light color.
R + G + B =
239 + 216 + 206 = 661 (100%)
R 239 of 661 ~ 36.16%
G 216 of 661 ~ 32.68%
B 206 of 661 ~ 31.16%
#EFD8CE color CMYK value is (0,10,14,6).
CMYK: (0,10,14,6) C0M10Y14K6 (0%,10%,14%,6%) (0.00/0.10/0.14/0.06)
EF | D8 | CE | |
---|---|---|---|
RGB | 239 | 216 | 206 |
HSL | 18° | 50.77% | 87.25% |
HSB/HSV | 18° | 13.81% | 93.73% |
CMYK | 0.00% | 9.62% | 13.81% |
6.27% |
HEX | EF | D8 | CE |
Decimal | 239 | 216 | 206 |
Binary | 11101111 | 11011000 | 11001110 |
Octal | 357 | 330 | 316 |
Examples of css and html codes for elements with #EFD8CE color. Also use rgb(239,216,206) instead hex code.
.myTextColor { color: #EFD8CE; }
<p style="color:#EFD8CE">This sample text font color is #EFD8CE.</p>
This text font color is #EFD8CE.
.myBgColor { background-color: #EFD8CE; }
<div style="background-color:#EFD8CE">Inner text</div>
This div background color is #EFD8CE.
.myBorderColor { border: 1px solid #EFD8CE; }
<div style="border:3px solid #EFD8CE">Div</div>
This div border color is #EFD8CE.
.myOpacity80 { color: #EFD8CE; opacity: 0.8; }
<p style="color:#EFD8CE;opacity:0.8;">80%</p>
Text with #EFD8CE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFD8CE;}
<p style="text-shadow: 3px 3px 1px #EFD8CE">Text here.</p>
This text has shadow with #EFD8CE color.
.textShadow {text-shadow: 3px 3px 1px #EFD8CE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFD8CE, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFD8CE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFD8CE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFD8CE, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFD8CE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFD8CE; -webkit-box-shadow: 1px 1px 3px 2px #EFD8CE; box-shadow: 1px 1px 3px 2px #EFD8CE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFD8CE; -webkit-box-shadow: 1px 1px 3px 2px #EFD8CE; box-shadow:1px 1px 3px 2px #EFD8CE;">
Div content here</div>
This text has color #EFD8CE on black background.
This text has color #EFD8CE on white background.
This text has black color on #EFD8CE background.
This text has white color on #EFD8CE background.