HEX: #E6CCDB
RGB: (230,204,219)
#E6CCDB contains red, green and blue colors in about the same proportion. Web safe color of #E6CCDB is #CCCCCC (or #CCC).
#E6CCDB color RGB value is (230,204,219).
RGB: (230,204,219) (90%,80%,86%)
R 230 of 255 = 90%
G 204 of 255 = 80%
B 219 of 255 = 86%
R + G + B ~ 85%. #E6CCDB is quite light color.
R + G + B =
230 + 204 + 219 = 653 (100%)
R 230 of 653 ~ 35.22%
G 204 of 653 ~ 31.24%
B 219 of 653 ~ 33.54%
#E6CCDB color CMYK value is (0,11,5,10).
CMYK: (0,11,5,10) C0M11Y5K10 (0%,11%,5%,10%) (0.00/0.11/0.05/0.10)
E6 | CC | DB | |
---|---|---|---|
RGB | 230 | 204 | 219 |
HSL | 325° | 34.21% | 85.10% |
HSB/HSV | 325° | 11.30% | 90.20% |
CMYK | 0.00% | 11.30% | 4.78% |
9.80% |
HEX | E6 | CC | DB |
Decimal | 230 | 204 | 219 |
Binary | 11100110 | 11001100 | 11011011 |
Octal | 346 | 314 | 333 |
Examples of css and html codes for elements with #E6CCDB color. Also use rgb(230,204,219) instead hex code.
.myTextColor { color: #E6CCDB; }
<p style="color:#E6CCDB">This sample text font color is #E6CCDB.</p>
This text font color is #E6CCDB.
.myBgColor { background-color: #E6CCDB; }
<div style="background-color:#E6CCDB">Inner text</div>
This div background color is #E6CCDB.
.myBorderColor { border: 1px solid #E6CCDB; }
<div style="border:3px solid #E6CCDB">Div</div>
This div border color is #E6CCDB.
.myOpacity80 { color: #E6CCDB; opacity: 0.8; }
<p style="color:#E6CCDB;opacity:0.8;">80%</p>
Text with #E6CCDB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E6CCDB;}
<p style="text-shadow: 3px 3px 1px #E6CCDB">Text here.</p>
This text has shadow with #E6CCDB color.
.textShadow {text-shadow: 3px 3px 1px #E6CCDB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E6CCDB, 5px 5px 20px red">Text here.</p>
This text has shadow with #E6CCDB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E6CCDB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E6CCDB, Direction=45, Strength=4)">Text</p>
This text has shadow with #E6CCDB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E6CCDB; -webkit-box-shadow: 1px 1px 3px 2px #E6CCDB; box-shadow: 1px 1px 3px 2px #E6CCDB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E6CCDB; -webkit-box-shadow: 1px 1px 3px 2px #E6CCDB; box-shadow:1px 1px 3px 2px #E6CCDB;">
Div content here</div>
This text has color #E6CCDB on black background.
This text has color #E6CCDB on white background.
This text has black color on #E6CCDB background.
This text has white color on #E6CCDB background.