HEX: #E2CCDB
RGB: (226,204,219)
#E2CCDB contains red, green and blue colors in about the same proportion. Web safe color of #E2CCDB is #CCCCCC (or #CCC).
#E2CCDB color RGB value is (226,204,219).
RGB: (226,204,219) (89%,80%,86%)
R 226 of 255 = 89%
G 204 of 255 = 80%
B 219 of 255 = 86%
R + G + B ~ 85%. #E2CCDB is quite light color.
R + G + B =
226 + 204 + 219 = 649 (100%)
R 226 of 649 ~ 34.82%
G 204 of 649 ~ 31.43%
B 219 of 649 ~ 33.74%
#E2CCDB color CMYK value is (0,10,3,11).
CMYK: (0,10,3,11) C0M10Y3K11 (0%,10%,3%,11%) (0.00/0.10/0.03/0.11)
E2 | CC | DB | |
---|---|---|---|
RGB | 226 | 204 | 219 |
HSL | 319° | 27.50% | 84.31% |
HSB/HSV | 319° | 9.73% | 88.63% |
CMYK | 0.00% | 9.73% | 3.10% |
11.37% |
HEX | E2 | CC | DB |
Decimal | 226 | 204 | 219 |
Binary | 11100010 | 11001100 | 11011011 |
Octal | 342 | 314 | 333 |
Examples of css and html codes for elements with #E2CCDB color. Also use rgb(226,204,219) instead hex code.
.myTextColor { color: #E2CCDB; }
<p style="color:#E2CCDB">This sample text font color is #E2CCDB.</p>
This text font color is #E2CCDB.
.myBgColor { background-color: #E2CCDB; }
<div style="background-color:#E2CCDB">Inner text</div>
This div background color is #E2CCDB.
.myBorderColor { border: 1px solid #E2CCDB; }
<div style="border:3px solid #E2CCDB">Div</div>
This div border color is #E2CCDB.
.myOpacity80 { color: #E2CCDB; opacity: 0.8; }
<p style="color:#E2CCDB;opacity:0.8;">80%</p>
Text with #E2CCDB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E2CCDB;}
<p style="text-shadow: 3px 3px 1px #E2CCDB">Text here.</p>
This text has shadow with #E2CCDB color.
.textShadow {text-shadow: 3px 3px 1px #E2CCDB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E2CCDB, 5px 5px 20px red">Text here.</p>
This text has shadow with #E2CCDB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E2CCDB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E2CCDB, Direction=45, Strength=4)">Text</p>
This text has shadow with #E2CCDB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E2CCDB; -webkit-box-shadow: 1px 1px 3px 2px #E2CCDB; box-shadow: 1px 1px 3px 2px #E2CCDB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E2CCDB; -webkit-box-shadow: 1px 1px 3px 2px #E2CCDB; box-shadow:1px 1px 3px 2px #E2CCDB;">
Div content here</div>
This text has color #E2CCDB on black background.
This text has color #E2CCDB on white background.
This text has black color on #E2CCDB background.
This text has white color on #E2CCDB background.