HEX: #D0ADCC
RGB: (208,173,204)
#D0ADCC contains red, green and blue colors in about the same proportion. Web safe color of #D0ADCC is #CC99CC (or #C9C).
#D0ADCC color RGB value is (208,173,204).
RGB: (208,173,204) (82%,68%,80%)
R 208 of 255 = 82%
G 173 of 255 = 68%
B 204 of 255 = 80%
R + G + B ~ 77%. #D0ADCC is quite light color.
R + G + B =
208 + 173 + 204 = 585 (100%)
R 208 of 585 ~ 35.56%
G 173 of 585 ~ 29.57%
B 204 of 585 ~ 34.87%
#D0ADCC color CMYK value is (0,17,2,18).
CMYK: (0,17,2,18) C0M17Y2K18 (0%,17%,2%,18%) (0.00/0.17/0.02/0.18)
D0 | AD | CC | |
---|---|---|---|
RGB | 208 | 173 | 204 |
HSL | 307° | 27.13% | 74.71% |
HSB/HSV | 307° | 16.83% | 81.57% |
CMYK | 0.00% | 16.83% | 1.92% |
18.43% |
HEX | D0 | AD | CC |
Decimal | 208 | 173 | 204 |
Binary | 11010000 | 10101101 | 11001100 |
Octal | 320 | 255 | 314 |
Examples of css and html codes for elements with #D0ADCC color. Also use rgb(208,173,204) instead hex code.
.myTextColor { color: #D0ADCC; }
<p style="color:#D0ADCC">This sample text font color is #D0ADCC.</p>
This text font color is #D0ADCC.
.myBgColor { background-color: #D0ADCC; }
<div style="background-color:#D0ADCC">Inner text</div>
This div background color is #D0ADCC.
.myBorderColor { border: 1px solid #D0ADCC; }
<div style="border:3px solid #D0ADCC">Div</div>
This div border color is #D0ADCC.
.myOpacity80 { color: #D0ADCC; opacity: 0.8; }
<p style="color:#D0ADCC;opacity:0.8;">80%</p>
Text with #D0ADCC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D0ADCC;}
<p style="text-shadow: 3px 3px 1px #D0ADCC">Text here.</p>
This text has shadow with #D0ADCC color.
.textShadow {text-shadow: 3px 3px 1px #D0ADCC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D0ADCC, 5px 5px 20px red">Text here.</p>
This text has shadow with #D0ADCC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D0ADCC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D0ADCC, Direction=45, Strength=4)">Text</p>
This text has shadow with #D0ADCC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D0ADCC; -webkit-box-shadow: 1px 1px 3px 2px #D0ADCC; box-shadow: 1px 1px 3px 2px #D0ADCC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D0ADCC; -webkit-box-shadow: 1px 1px 3px 2px #D0ADCC; box-shadow:1px 1px 3px 2px #D0ADCC;">
Div content here</div>
This text has color #D0ADCC on black background.
This text has color #D0ADCC on white background.
This text has black color on #D0ADCC background.
This text has white color on #D0ADCC background.