HEX: #D9BCCC
RGB: (217,188,204)
#D9BCCC contains red, green and blue colors in about the same proportion. Web safe color of #D9BCCC is #CCCCCC (or #CCC).
#D9BCCC color RGB value is (217,188,204).
RGB: (217,188,204) (85%,74%,80%)
R 217 of 255 = 85%
G 188 of 255 = 74%
B 204 of 255 = 80%
R + G + B ~ 80%. #D9BCCC is quite light color.
R + G + B =
217 + 188 + 204 = 609 (100%)
R 217 of 609 ~ 35.63%
G 188 of 609 ~ 30.87%
B 204 of 609 ~ 33.5%
#D9BCCC color CMYK value is (0,13,6,15).
CMYK: (0,13,6,15) C0M13Y6K15 (0%,13%,6%,15%) (0.00/0.13/0.06/0.15)
D9 | BC | CC | |
---|---|---|---|
RGB | 217 | 188 | 204 |
HSL | 327° | 27.62% | 79.41% |
HSB/HSV | 327° | 13.36% | 85.10% |
CMYK | 0.00% | 13.36% | 5.99% |
14.90% |
HEX | D9 | BC | CC |
Decimal | 217 | 188 | 204 |
Binary | 11011001 | 10111100 | 11001100 |
Octal | 331 | 274 | 314 |
Examples of css and html codes for elements with #D9BCCC color. Also use rgb(217,188,204) instead hex code.
.myTextColor { color: #D9BCCC; }
<p style="color:#D9BCCC">This sample text font color is #D9BCCC.</p>
This text font color is #D9BCCC.
.myBgColor { background-color: #D9BCCC; }
<div style="background-color:#D9BCCC">Inner text</div>
This div background color is #D9BCCC.
.myBorderColor { border: 1px solid #D9BCCC; }
<div style="border:3px solid #D9BCCC">Div</div>
This div border color is #D9BCCC.
.myOpacity80 { color: #D9BCCC; opacity: 0.8; }
<p style="color:#D9BCCC;opacity:0.8;">80%</p>
Text with #D9BCCC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D9BCCC;}
<p style="text-shadow: 3px 3px 1px #D9BCCC">Text here.</p>
This text has shadow with #D9BCCC color.
.textShadow {text-shadow: 3px 3px 1px #D9BCCC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D9BCCC, 5px 5px 20px red">Text here.</p>
This text has shadow with #D9BCCC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D9BCCC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D9BCCC, Direction=45, Strength=4)">Text</p>
This text has shadow with #D9BCCC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D9BCCC; -webkit-box-shadow: 1px 1px 3px 2px #D9BCCC; box-shadow: 1px 1px 3px 2px #D9BCCC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D9BCCC; -webkit-box-shadow: 1px 1px 3px 2px #D9BCCC; box-shadow:1px 1px 3px 2px #D9BCCC;">
Div content here</div>
This text has color #D9BCCC on black background.
This text has color #D9BCCC on white background.
This text has black color on #D9BCCC background.
This text has white color on #D9BCCC background.