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