HEX: #E7CDDA
RGB: (231,205,218)
#E7CDDA contains red, green and blue colors in about the same proportion. Web safe color of #E7CDDA is #FFCCCC (or #FCC).
#E7CDDA color RGB value is (231,205,218).
RGB: (231,205,218) (91%,80%,85%)
R 231 of 255 = 91%
G 205 of 255 = 80%
B 218 of 255 = 85%
R + G + B ~ 85%. #E7CDDA is quite light color.
R + G + B =
231 + 205 + 218 = 654 (100%)
R 231 of 654 ~ 35.32%
G 205 of 654 ~ 31.35%
B 218 of 654 ~ 33.33%
#E7CDDA color CMYK value is (0,11,6,9).
CMYK: (0,11,6,9) C0M11Y6K9 (0%,11%,6%,9%) (0.00/0.11/0.06/0.09)
E7 | CD | DA | |
---|---|---|---|
RGB | 231 | 205 | 218 |
HSL | 330° | 35.14% | 85.49% |
HSB/HSV | 330° | 11.26% | 90.59% |
CMYK | 0.00% | 11.26% | 5.63% |
9.41% |
HEX | E7 | CD | DA |
Decimal | 231 | 205 | 218 |
Binary | 11100111 | 11001101 | 11011010 |
Octal | 347 | 315 | 332 |
Examples of css and html codes for elements with #E7CDDA color. Also use rgb(231,205,218) instead hex code.
.myTextColor { color: #E7CDDA; }
<p style="color:#E7CDDA">This sample text font color is #E7CDDA.</p>
This text font color is #E7CDDA.
.myBgColor { background-color: #E7CDDA; }
<div style="background-color:#E7CDDA">Inner text</div>
This div background color is #E7CDDA.
.myBorderColor { border: 1px solid #E7CDDA; }
<div style="border:3px solid #E7CDDA">Div</div>
This div border color is #E7CDDA.
.myOpacity80 { color: #E7CDDA; opacity: 0.8; }
<p style="color:#E7CDDA;opacity:0.8;">80%</p>
Text with #E7CDDA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E7CDDA;}
<p style="text-shadow: 3px 3px 1px #E7CDDA">Text here.</p>
This text has shadow with #E7CDDA color.
.textShadow {text-shadow: 3px 3px 1px #E7CDDA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E7CDDA, 5px 5px 20px red">Text here.</p>
This text has shadow with #E7CDDA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E7CDDA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E7CDDA, Direction=45, Strength=4)">Text</p>
This text has shadow with #E7CDDA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E7CDDA; -webkit-box-shadow: 1px 1px 3px 2px #E7CDDA; box-shadow: 1px 1px 3px 2px #E7CDDA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E7CDDA; -webkit-box-shadow: 1px 1px 3px 2px #E7CDDA; box-shadow:1px 1px 3px 2px #E7CDDA;">
Div content here</div>
This text has color #E7CDDA on black background.
This text has color #E7CDDA on white background.
This text has black color on #E7CDDA background.
This text has white color on #E7CDDA background.