HEX: #C8ADCC
RGB: (200,173,204)
#C8ADCC contains red, green and blue colors in about the same proportion. Web safe color of #C8ADCC is #CC99CC (or #C9C).
#C8ADCC color RGB value is (200,173,204).
RGB: (200,173,204) (78%,68%,80%)
R 200 of 255 = 78%
G 173 of 255 = 68%
B 204 of 255 = 80%
R + G + B ~ 75%. #C8ADCC is quite light color.
R + G + B =
200 + 173 + 204 = 577 (100%)
R 200 of 577 ~ 34.66%
G 173 of 577 ~ 29.98%
B 204 of 577 ~ 35.36%
#C8ADCC color CMYK value is (2,15,0,20).
CMYK: (2,15,0,20) C2M15Y0K20 (2%,15%,0%,20%) (0.02/0.15/0.00/0.20)
C8 | AD | CC | |
---|---|---|---|
RGB | 200 | 173 | 204 |
HSL | 292° | 23.31% | 73.92% |
HSB/HSV | 292° | 15.20% | 80.00% |
CMYK | 1.96% | 15.20% | 0.00% |
20.00% |
HEX | C8 | AD | CC |
Decimal | 200 | 173 | 204 |
Binary | 11001000 | 10101101 | 11001100 |
Octal | 310 | 255 | 314 |
Examples of css and html codes for elements with #C8ADCC color. Also use rgb(200,173,204) instead hex code.
.myTextColor { color: #C8ADCC; }
<p style="color:#C8ADCC">This sample text font color is #C8ADCC.</p>
This text font color is #C8ADCC.
.myBgColor { background-color: #C8ADCC; }
<div style="background-color:#C8ADCC">Inner text</div>
This div background color is #C8ADCC.
.myBorderColor { border: 1px solid #C8ADCC; }
<div style="border:3px solid #C8ADCC">Div</div>
This div border color is #C8ADCC.
.myOpacity80 { color: #C8ADCC; opacity: 0.8; }
<p style="color:#C8ADCC;opacity:0.8;">80%</p>
Text with #C8ADCC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C8ADCC;}
<p style="text-shadow: 3px 3px 1px #C8ADCC">Text here.</p>
This text has shadow with #C8ADCC color.
.textShadow {text-shadow: 3px 3px 1px #C8ADCC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C8ADCC, 5px 5px 20px red">Text here.</p>
This text has shadow with #C8ADCC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C8ADCC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C8ADCC, Direction=45, Strength=4)">Text</p>
This text has shadow with #C8ADCC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C8ADCC; -webkit-box-shadow: 1px 1px 3px 2px #C8ADCC; box-shadow: 1px 1px 3px 2px #C8ADCC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C8ADCC; -webkit-box-shadow: 1px 1px 3px 2px #C8ADCC; box-shadow:1px 1px 3px 2px #C8ADCC;">
Div content here</div>
This text has color #C8ADCC on black background.
This text has color #C8ADCC on white background.
This text has black color on #C8ADCC background.
This text has white color on #C8ADCC background.