HEX: #E7DFDC
RGB: (231,223,220)
#E7DFDC contains red, green and blue colors in about the same proportion. Web safe color of #E7DFDC is #FFCCCC (or #FCC).
#E7DFDC color RGB value is (231,223,220).
RGB: (231,223,220) (91%,87%,86%)
R 231 of 255 = 91%
G 223 of 255 = 87%
B 220 of 255 = 86%
R + G + B ~ 88%. #E7DFDC is light color.
R + G + B =
231 + 223 + 220 = 674 (100%)
R 231 of 674 ~ 34.27%
G 223 of 674 ~ 33.09%
B 220 of 674 ~ 32.64%
#E7DFDC color CMYK value is (0,3,5,9).
CMYK: (0,3,5,9) C0M3Y5K9 (0%,3%,5%,9%) (0.00/0.03/0.05/0.09)
E7 | DF | DC | |
---|---|---|---|
RGB | 231 | 223 | 220 |
HSL | 16° | 18.64% | 88.43% |
HSB/HSV | 16° | 4.76% | 90.59% |
CMYK | 0.00% | 3.46% | 4.76% |
9.41% |
HEX | E7 | DF | DC |
Decimal | 231 | 223 | 220 |
Binary | 11100111 | 11011111 | 11011100 |
Octal | 347 | 337 | 334 |
Examples of css and html codes for elements with #E7DFDC color. Also use rgb(231,223,220) instead hex code.
.myTextColor { color: #E7DFDC; }
<p style="color:#E7DFDC">This sample text font color is #E7DFDC.</p>
This text font color is #E7DFDC.
.myBgColor { background-color: #E7DFDC; }
<div style="background-color:#E7DFDC">Inner text</div>
This div background color is #E7DFDC.
.myBorderColor { border: 1px solid #E7DFDC; }
<div style="border:3px solid #E7DFDC">Div</div>
This div border color is #E7DFDC.
.myOpacity80 { color: #E7DFDC; opacity: 0.8; }
<p style="color:#E7DFDC;opacity:0.8;">80%</p>
Text with #E7DFDC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E7DFDC;}
<p style="text-shadow: 3px 3px 1px #E7DFDC">Text here.</p>
This text has shadow with #E7DFDC color.
.textShadow {text-shadow: 3px 3px 1px #E7DFDC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E7DFDC, 5px 5px 20px red">Text here.</p>
This text has shadow with #E7DFDC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E7DFDC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E7DFDC, Direction=45, Strength=4)">Text</p>
This text has shadow with #E7DFDC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E7DFDC; -webkit-box-shadow: 1px 1px 3px 2px #E7DFDC; box-shadow: 1px 1px 3px 2px #E7DFDC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E7DFDC; -webkit-box-shadow: 1px 1px 3px 2px #E7DFDC; box-shadow:1px 1px 3px 2px #E7DFDC;">
Div content here</div>
This text has color #E7DFDC on black background.
This text has color #E7DFDC on white background.
This text has black color on #E7DFDC background.
This text has white color on #E7DFDC background.