HEX: #C6ADCB
RGB: (198,173,203)
#C6ADCB contains red, green and blue colors in about the same proportion. Web safe color of #C6ADCB is #CC99CC (or #C9C).
#C6ADCB color RGB value is (198,173,203).
RGB: (198,173,203) (78%,68%,80%)
R 198 of 255 = 78%
G 173 of 255 = 68%
B 203 of 255 = 80%
R + G + B ~ 75%. #C6ADCB is quite light color.
R + G + B =
198 + 173 + 203 = 574 (100%)
R 198 of 574 ~ 34.49%
G 173 of 574 ~ 30.14%
B 203 of 574 ~ 35.37%
#C6ADCB 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)
C6 | AD | CB | |
---|---|---|---|
RGB | 198 | 173 | 203 |
HSL | 290° | 22.39% | 73.73% |
HSB/HSV | 290° | 14.78% | 79.61% |
CMYK | 2.46% | 14.78% | 0.00% |
20.39% |
HEX | C6 | AD | CB |
Decimal | 198 | 173 | 203 |
Binary | 11000110 | 10101101 | 11001011 |
Octal | 306 | 255 | 313 |
Examples of css and html codes for elements with #C6ADCB color. Also use rgb(198,173,203) instead hex code.
.myTextColor { color: #C6ADCB; }
<p style="color:#C6ADCB">This sample text font color is #C6ADCB.</p>
This text font color is #C6ADCB.
.myBgColor { background-color: #C6ADCB; }
<div style="background-color:#C6ADCB">Inner text</div>
This div background color is #C6ADCB.
.myBorderColor { border: 1px solid #C6ADCB; }
<div style="border:3px solid #C6ADCB">Div</div>
This div border color is #C6ADCB.
.myOpacity80 { color: #C6ADCB; opacity: 0.8; }
<p style="color:#C6ADCB;opacity:0.8;">80%</p>
Text with #C6ADCB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C6ADCB;}
<p style="text-shadow: 3px 3px 1px #C6ADCB">Text here.</p>
This text has shadow with #C6ADCB color.
.textShadow {text-shadow: 3px 3px 1px #C6ADCB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C6ADCB, 5px 5px 20px red">Text here.</p>
This text has shadow with #C6ADCB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C6ADCB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C6ADCB, Direction=45, Strength=4)">Text</p>
This text has shadow with #C6ADCB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C6ADCB; -webkit-box-shadow: 1px 1px 3px 2px #C6ADCB; box-shadow: 1px 1px 3px 2px #C6ADCB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C6ADCB; -webkit-box-shadow: 1px 1px 3px 2px #C6ADCB; box-shadow:1px 1px 3px 2px #C6ADCB;">
Div content here</div>
This text has color #C6ADCB on black background.
This text has color #C6ADCB on white background.
This text has black color on #C6ADCB background.
This text has white color on #C6ADCB background.