HEX: #D9ABCC
RGB: (217,171,204)
#D9ABCC contains red, green and blue colors in about the same proportion. Web safe color of #D9ABCC is #CC99CC (or #C9C).
#D9ABCC color RGB value is (217,171,204).
RGB: (217,171,204) (85%,67%,80%)
R 217 of 255 = 85%
G 171 of 255 = 67%
B 204 of 255 = 80%
R + G + B ~ 77%. #D9ABCC is quite light color.
R + G + B =
217 + 171 + 204 = 592 (100%)
R 217 of 592 ~ 36.66%
G 171 of 592 ~ 28.89%
B 204 of 592 ~ 34.46%
#D9ABCC color CMYK value is (0,21,6,15).
CMYK: (0,21,6,15) C0M21Y6K15 (0%,21%,6%,15%) (0.00/0.21/0.06/0.15)
D9 | AB | CC | |
---|---|---|---|
RGB | 217 | 171 | 204 |
HSL | 317° | 37.70% | 76.08% |
HSB/HSV | 317° | 21.20% | 85.10% |
CMYK | 0.00% | 21.20% | 5.99% |
14.90% |
HEX | D9 | AB | CC |
Decimal | 217 | 171 | 204 |
Binary | 11011001 | 10101011 | 11001100 |
Octal | 331 | 253 | 314 |
Examples of css and html codes for elements with #D9ABCC color. Also use rgb(217,171,204) instead hex code.
.myTextColor { color: #D9ABCC; }
<p style="color:#D9ABCC">This sample text font color is #D9ABCC.</p>
This text font color is #D9ABCC.
.myBgColor { background-color: #D9ABCC; }
<div style="background-color:#D9ABCC">Inner text</div>
This div background color is #D9ABCC.
.myBorderColor { border: 1px solid #D9ABCC; }
<div style="border:3px solid #D9ABCC">Div</div>
This div border color is #D9ABCC.
.myOpacity80 { color: #D9ABCC; opacity: 0.8; }
<p style="color:#D9ABCC;opacity:0.8;">80%</p>
Text with #D9ABCC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D9ABCC;}
<p style="text-shadow: 3px 3px 1px #D9ABCC">Text here.</p>
This text has shadow with #D9ABCC color.
.textShadow {text-shadow: 3px 3px 1px #D9ABCC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D9ABCC, 5px 5px 20px red">Text here.</p>
This text has shadow with #D9ABCC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D9ABCC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D9ABCC, Direction=45, Strength=4)">Text</p>
This text has shadow with #D9ABCC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D9ABCC; -webkit-box-shadow: 1px 1px 3px 2px #D9ABCC; box-shadow: 1px 1px 3px 2px #D9ABCC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D9ABCC; -webkit-box-shadow: 1px 1px 3px 2px #D9ABCC; box-shadow:1px 1px 3px 2px #D9ABCC;">
Div content here</div>
This text has color #D9ABCC on black background.
This text has color #D9ABCC on white background.
This text has black color on #D9ABCC background.
This text has white color on #D9ABCC background.