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