HEX: #E9C0DD
RGB: (233,192,221)
#E9C0DD contains red, green and blue colors in about the same proportion. Web safe color of #E9C0DD is #FFCCCC (or #FCC).
#E9C0DD color RGB value is (233,192,221).
RGB: (233,192,221) (91%,75%,87%)
R 233 of 255 = 91%
G 192 of 255 = 75%
B 221 of 255 = 87%
R + G + B ~ 84%. #E9C0DD is quite light color.
R + G + B =
233 + 192 + 221 = 646 (100%)
R 233 of 646 ~ 36.07%
G 192 of 646 ~ 29.72%
B 221 of 646 ~ 34.21%
#E9C0DD color CMYK value is (0,18,5,9).
CMYK: (0,18,5,9) C0M18Y5K9 (0%,18%,5%,9%) (0.00/0.18/0.05/0.09)
E9 | C0 | DD | |
---|---|---|---|
RGB | 233 | 192 | 221 |
HSL | 318° | 48.24% | 83.33% |
HSB/HSV | 318° | 17.60% | 91.37% |
CMYK | 0.00% | 17.60% | 5.15% |
8.63% |
HEX | E9 | C0 | DD |
Decimal | 233 | 192 | 221 |
Binary | 11101001 | 11000000 | 11011101 |
Octal | 351 | 300 | 335 |
Examples of css and html codes for elements with #E9C0DD color. Also use rgb(233,192,221) instead hex code.
.myTextColor { color: #E9C0DD; }
<p style="color:#E9C0DD">This sample text font color is #E9C0DD.</p>
This text font color is #E9C0DD.
.myBgColor { background-color: #E9C0DD; }
<div style="background-color:#E9C0DD">Inner text</div>
This div background color is #E9C0DD.
.myBorderColor { border: 1px solid #E9C0DD; }
<div style="border:3px solid #E9C0DD">Div</div>
This div border color is #E9C0DD.
.myOpacity80 { color: #E9C0DD; opacity: 0.8; }
<p style="color:#E9C0DD;opacity:0.8;">80%</p>
Text with #E9C0DD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E9C0DD;}
<p style="text-shadow: 3px 3px 1px #E9C0DD">Text here.</p>
This text has shadow with #E9C0DD color.
.textShadow {text-shadow: 3px 3px 1px #E9C0DD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E9C0DD, 5px 5px 20px red">Text here.</p>
This text has shadow with #E9C0DD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E9C0DD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E9C0DD, Direction=45, Strength=4)">Text</p>
This text has shadow with #E9C0DD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E9C0DD; -webkit-box-shadow: 1px 1px 3px 2px #E9C0DD; box-shadow: 1px 1px 3px 2px #E9C0DD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E9C0DD; -webkit-box-shadow: 1px 1px 3px 2px #E9C0DD; box-shadow:1px 1px 3px 2px #E9C0DD;">
Div content here</div>
This text has color #E9C0DD on black background.
This text has color #E9C0DD on white background.
This text has black color on #E9C0DD background.
This text has white color on #E9C0DD background.