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