HEX: #EFEBDD
RGB: (239,235,221)
#EFEBDD contains red, green and blue colors in about the same proportion. Web safe color of #EFEBDD is #FFFFCC (or #FFC).
#EFEBDD color RGB value is (239,235,221).
RGB: (239,235,221) (94%,92%,87%)
R 239 of 255 = 94%
G 235 of 255 = 92%
B 221 of 255 = 87%
R + G + B ~ 91%. #EFEBDD is light color.
R + G + B =
239 + 235 + 221 = 695 (100%)
R 239 of 695 ~ 34.39%
G 235 of 695 ~ 33.81%
B 221 of 695 ~ 31.8%
#EFEBDD color CMYK value is (0,2,8,6).
CMYK: (0,2,8,6) C0M2Y8K6 (0%,2%,8%,6%) (0.00/0.02/0.08/0.06)
EF | EB | DD | |
---|---|---|---|
RGB | 239 | 235 | 221 |
HSL | 47° | 36.00% | 90.20% |
HSB/HSV | 47° | 7.53% | 93.73% |
CMYK | 0.00% | 1.67% | 7.53% |
6.27% |
HEX | EF | EB | DD |
Decimal | 239 | 235 | 221 |
Binary | 11101111 | 11101011 | 11011101 |
Octal | 357 | 353 | 335 |
Examples of css and html codes for elements with #EFEBDD color. Also use rgb(239,235,221) instead hex code.
.myTextColor { color: #EFEBDD; }
<p style="color:#EFEBDD">This sample text font color is #EFEBDD.</p>
This text font color is #EFEBDD.
.myBgColor { background-color: #EFEBDD; }
<div style="background-color:#EFEBDD">Inner text</div>
This div background color is #EFEBDD.
.myBorderColor { border: 1px solid #EFEBDD; }
<div style="border:3px solid #EFEBDD">Div</div>
This div border color is #EFEBDD.
.myOpacity80 { color: #EFEBDD; opacity: 0.8; }
<p style="color:#EFEBDD;opacity:0.8;">80%</p>
Text with #EFEBDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFEBDD;}
<p style="text-shadow: 3px 3px 1px #EFEBDD">Text here.</p>
This text has shadow with #EFEBDD color.
.textShadow {text-shadow: 3px 3px 1px #EFEBDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFEBDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFEBDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFEBDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFEBDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFEBDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFEBDD; -webkit-box-shadow: 1px 1px 3px 2px #EFEBDD; box-shadow: 1px 1px 3px 2px #EFEBDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFEBDD; -webkit-box-shadow: 1px 1px 3px 2px #EFEBDD; box-shadow:1px 1px 3px 2px #EFEBDD;">
Div content here</div>
This text has color #EFEBDD on black background.
This text has color #EFEBDD on white background.
This text has black color on #EFEBDD background.
This text has white color on #EFEBDD background.