HEX: #C5ADBB
RGB: (197,173,187)
#C5ADBB contains red, green and blue colors in about the same proportion. Web safe color of #C5ADBB is #CC99CC (or #C9C).
#C5ADBB color RGB value is (197,173,187).
RGB: (197,173,187) (77%,68%,73%)
R 197 of 255 = 77%
G 173 of 255 = 68%
B 187 of 255 = 73%
R + G + B ~ 73%. #C5ADBB is quite light color.
R + G + B =
197 + 173 + 187 = 557 (100%)
R 197 of 557 ~ 35.37%
G 173 of 557 ~ 31.06%
B 187 of 557 ~ 33.57%
#C5ADBB color CMYK value is (0,12,5,23).
CMYK: (0,12,5,23) C0M12Y5K23 (0%,12%,5%,23%) (0.00/0.12/0.05/0.23)
C5 | AD | BB | |
---|---|---|---|
RGB | 197 | 173 | 187 |
HSL | 325° | 17.14% | 72.55% |
HSB/HSV | 325° | 12.18% | 77.25% |
CMYK | 0.00% | 12.18% | 5.08% |
22.75% |
HEX | C5 | AD | BB |
Decimal | 197 | 173 | 187 |
Binary | 11000101 | 10101101 | 10111011 |
Octal | 305 | 255 | 273 |
Examples of css and html codes for elements with #C5ADBB color. Also use rgb(197,173,187) instead hex code.
.myTextColor { color: #C5ADBB; }
<p style="color:#C5ADBB">This sample text font color is #C5ADBB.</p>
This text font color is #C5ADBB.
.myBgColor { background-color: #C5ADBB; }
<div style="background-color:#C5ADBB">Inner text</div>
This div background color is #C5ADBB.
.myBorderColor { border: 1px solid #C5ADBB; }
<div style="border:3px solid #C5ADBB">Div</div>
This div border color is #C5ADBB.
.myOpacity80 { color: #C5ADBB; opacity: 0.8; }
<p style="color:#C5ADBB;opacity:0.8;">80%</p>
Text with #C5ADBB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5ADBB;}
<p style="text-shadow: 3px 3px 1px #C5ADBB">Text here.</p>
This text has shadow with #C5ADBB color.
.textShadow {text-shadow: 3px 3px 1px #C5ADBB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5ADBB, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5ADBB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5ADBB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5ADBB, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5ADBB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5ADBB; -webkit-box-shadow: 1px 1px 3px 2px #C5ADBB; box-shadow: 1px 1px 3px 2px #C5ADBB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5ADBB; -webkit-box-shadow: 1px 1px 3px 2px #C5ADBB; box-shadow:1px 1px 3px 2px #C5ADBB;">
Div content here</div>
This text has color #C5ADBB on black background.
This text has color #C5ADBB on white background.
This text has black color on #C5ADBB background.
This text has white color on #C5ADBB background.