HEX: #E7DBDD
RGB: (231,219,221)
#E7DBDD contains red, green and blue colors in about the same proportion. Web safe color of #E7DBDD is #FFCCCC (or #FCC).
#E7DBDD color RGB value is (231,219,221).
RGB: (231,219,221) (91%,86%,87%)
R 231 of 255 = 91%
G 219 of 255 = 86%
B 221 of 255 = 87%
R + G + B ~ 88%. #E7DBDD is light color.
R + G + B =
231 + 219 + 221 = 671 (100%)
R 231 of 671 ~ 34.43%
G 219 of 671 ~ 32.64%
B 221 of 671 ~ 32.94%
#E7DBDD color CMYK value is (0,5,4,9).
CMYK: (0,5,4,9) C0M5Y4K9 (0%,5%,4%,9%) (0.00/0.05/0.04/0.09)
E7 | DB | DD | |
---|---|---|---|
RGB | 231 | 219 | 221 |
HSL | 350° | 20.00% | 88.24% |
HSB/HSV | 350° | 5.19% | 90.59% |
CMYK | 0.00% | 5.19% | 4.33% |
9.41% |
HEX | E7 | DB | DD |
Decimal | 231 | 219 | 221 |
Binary | 11100111 | 11011011 | 11011101 |
Octal | 347 | 333 | 335 |
Examples of css and html codes for elements with #E7DBDD color. Also use rgb(231,219,221) instead hex code.
.myTextColor { color: #E7DBDD; }
<p style="color:#E7DBDD">This sample text font color is #E7DBDD.</p>
This text font color is #E7DBDD.
.myBgColor { background-color: #E7DBDD; }
<div style="background-color:#E7DBDD">Inner text</div>
This div background color is #E7DBDD.
.myBorderColor { border: 1px solid #E7DBDD; }
<div style="border:3px solid #E7DBDD">Div</div>
This div border color is #E7DBDD.
.myOpacity80 { color: #E7DBDD; opacity: 0.8; }
<p style="color:#E7DBDD;opacity:0.8;">80%</p>
Text with #E7DBDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E7DBDD;}
<p style="text-shadow: 3px 3px 1px #E7DBDD">Text here.</p>
This text has shadow with #E7DBDD color.
.textShadow {text-shadow: 3px 3px 1px #E7DBDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E7DBDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #E7DBDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E7DBDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E7DBDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #E7DBDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E7DBDD; -webkit-box-shadow: 1px 1px 3px 2px #E7DBDD; box-shadow: 1px 1px 3px 2px #E7DBDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E7DBDD; -webkit-box-shadow: 1px 1px 3px 2px #E7DBDD; box-shadow:1px 1px 3px 2px #E7DBDD;">
Div content here</div>
This text has color #E7DBDD on black background.
This text has color #E7DBDD on white background.
This text has black color on #E7DBDD background.
This text has white color on #E7DBDD background.