HEX: #E7E9DC
RGB: (231,233,220)
#E7E9DC contains red, green and blue colors in about the same proportion. Web safe color of #E7E9DC is #FFFFCC (or #FFC).
#E7E9DC color RGB value is (231,233,220).
RGB: (231,233,220) (91%,91%,86%)
R 231 of 255 = 91%
G 233 of 255 = 91%
B 220 of 255 = 86%
R + G + B ~ 89%. #E7E9DC is light color.
R + G + B =
231 + 233 + 220 = 684 (100%)
R 231 of 684 ~ 33.77%
G 233 of 684 ~ 34.06%
B 220 of 684 ~ 32.16%
#E7E9DC color CMYK value is (1,0,6,9).
CMYK: (1,0,6,9) C1M0Y6K9 (1%,0%,6%,9%) (0.01/0.00/0.06/0.09)
E7 | E9 | DC | |
---|---|---|---|
RGB | 231 | 233 | 220 |
HSL | 69° | 22.81% | 88.82% |
HSB/HSV | 69° | 5.58% | 91.37% |
CMYK | 0.86% | 0.00% | 5.58% |
8.63% |
HEX | E7 | E9 | DC |
Decimal | 231 | 233 | 220 |
Binary | 11100111 | 11101001 | 11011100 |
Octal | 347 | 351 | 334 |
Examples of css and html codes for elements with #E7E9DC color. Also use rgb(231,233,220) instead hex code.
.myTextColor { color: #E7E9DC; }
<p style="color:#E7E9DC">This sample text font color is #E7E9DC.</p>
This text font color is #E7E9DC.
.myBgColor { background-color: #E7E9DC; }
<div style="background-color:#E7E9DC">Inner text</div>
This div background color is #E7E9DC.
.myBorderColor { border: 1px solid #E7E9DC; }
<div style="border:3px solid #E7E9DC">Div</div>
This div border color is #E7E9DC.
.myOpacity80 { color: #E7E9DC; opacity: 0.8; }
<p style="color:#E7E9DC;opacity:0.8;">80%</p>
Text with #E7E9DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E7E9DC;}
<p style="text-shadow: 3px 3px 1px #E7E9DC">Text here.</p>
This text has shadow with #E7E9DC color.
.textShadow {text-shadow: 3px 3px 1px #E7E9DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E7E9DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #E7E9DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E7E9DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E7E9DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #E7E9DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E7E9DC; -webkit-box-shadow: 1px 1px 3px 2px #E7E9DC; box-shadow: 1px 1px 3px 2px #E7E9DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E7E9DC; -webkit-box-shadow: 1px 1px 3px 2px #E7E9DC; box-shadow:1px 1px 3px 2px #E7E9DC;">
Div content here</div>
This text has color #E7E9DC on black background.
This text has color #E7E9DC on white background.
This text has black color on #E7E9DC background.
This text has white color on #E7E9DC background.