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