HEX: #EFE1DE
RGB: (239,225,222)
#EFE1DE contains red, green and blue colors in about the same proportion. Web safe color of #EFE1DE is #FFCCCC (or #FCC).
#EFE1DE color RGB value is (239,225,222).
RGB: (239,225,222) (94%,88%,87%)
R 239 of 255 = 94%
G 225 of 255 = 88%
B 222 of 255 = 87%
R + G + B ~ 90%. #EFE1DE is light color.
R + G + B =
239 + 225 + 222 = 686 (100%)
R 239 of 686 ~ 34.84%
G 225 of 686 ~ 32.8%
B 222 of 686 ~ 32.36%
#EFE1DE color CMYK value is (0,6,7,6).
CMYK: (0,6,7,6) C0M6Y7K6 (0%,6%,7%,6%) (0.00/0.06/0.07/0.06)
EF | E1 | DE | |
---|---|---|---|
RGB | 239 | 225 | 222 |
HSL | 11° | 34.69% | 90.39% |
HSB/HSV | 11° | 7.11% | 93.73% |
CMYK | 0.00% | 5.86% | 7.11% |
6.27% |
HEX | EF | E1 | DE |
Decimal | 239 | 225 | 222 |
Binary | 11101111 | 11100001 | 11011110 |
Octal | 357 | 341 | 336 |
Examples of css and html codes for elements with #EFE1DE color. Also use rgb(239,225,222) instead hex code.
.myTextColor { color: #EFE1DE; }
<p style="color:#EFE1DE">This sample text font color is #EFE1DE.</p>
This text font color is #EFE1DE.
.myBgColor { background-color: #EFE1DE; }
<div style="background-color:#EFE1DE">Inner text</div>
This div background color is #EFE1DE.
.myBorderColor { border: 1px solid #EFE1DE; }
<div style="border:3px solid #EFE1DE">Div</div>
This div border color is #EFE1DE.
.myOpacity80 { color: #EFE1DE; opacity: 0.8; }
<p style="color:#EFE1DE;opacity:0.8;">80%</p>
Text with #EFE1DE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFE1DE;}
<p style="text-shadow: 3px 3px 1px #EFE1DE">Text here.</p>
This text has shadow with #EFE1DE color.
.textShadow {text-shadow: 3px 3px 1px #EFE1DE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFE1DE, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFE1DE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFE1DE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFE1DE, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFE1DE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFE1DE; -webkit-box-shadow: 1px 1px 3px 2px #EFE1DE; box-shadow: 1px 1px 3px 2px #EFE1DE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFE1DE; -webkit-box-shadow: 1px 1px 3px 2px #EFE1DE; box-shadow:1px 1px 3px 2px #EFE1DE;">
Div content here</div>
This text has color #EFE1DE on black background.
This text has color #EFE1DE on white background.
This text has black color on #EFE1DE background.
This text has white color on #EFE1DE background.