HEX: #C7ADAB
RGB: (199,173,171)
#C7ADAB contains red, green and blue colors in about the same proportion. Web safe color of #C7ADAB is #CC9999 (or #C99).
#C7ADAB color RGB value is (199,173,171).
RGB: (199,173,171) (78%,68%,67%)
R 199 of 255 = 78%
G 173 of 255 = 68%
B 171 of 255 = 67%
R + G + B ~ 71%. #C7ADAB is quite light color.
R + G + B =
199 + 173 + 171 = 543 (100%)
R 199 of 543 ~ 36.65%
G 173 of 543 ~ 31.86%
B 171 of 543 ~ 31.49%
#C7ADAB color CMYK value is (0,13,14,22).
CMYK: (0,13,14,22) C0M13Y14K22 (0%,13%,14%,22%) (0.00/0.13/0.14/0.22)
C7 | AD | AB | |
---|---|---|---|
RGB | 199 | 173 | 171 |
HSL | 4° | 20.00% | 72.55% |
HSB/HSV | 4° | 14.07% | 78.04% |
CMYK | 0.00% | 13.07% | 14.07% |
21.96% |
HEX | C7 | AD | AB |
Decimal | 199 | 173 | 171 |
Binary | 11000111 | 10101101 | 10101011 |
Octal | 307 | 255 | 253 |
Examples of css and html codes for elements with #C7ADAB color. Also use rgb(199,173,171) instead hex code.
.myTextColor { color: #C7ADAB; }
<p style="color:#C7ADAB">This sample text font color is #C7ADAB.</p>
This text font color is #C7ADAB.
.myBgColor { background-color: #C7ADAB; }
<div style="background-color:#C7ADAB">Inner text</div>
This div background color is #C7ADAB.
.myBorderColor { border: 1px solid #C7ADAB; }
<div style="border:3px solid #C7ADAB">Div</div>
This div border color is #C7ADAB.
.myOpacity80 { color: #C7ADAB; opacity: 0.8; }
<p style="color:#C7ADAB;opacity:0.8;">80%</p>
Text with #C7ADAB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C7ADAB;}
<p style="text-shadow: 3px 3px 1px #C7ADAB">Text here.</p>
This text has shadow with #C7ADAB color.
.textShadow {text-shadow: 3px 3px 1px #C7ADAB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C7ADAB, 5px 5px 20px red">Text here.</p>
This text has shadow with #C7ADAB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C7ADAB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C7ADAB, Direction=45, Strength=4)">Text</p>
This text has shadow with #C7ADAB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C7ADAB; -webkit-box-shadow: 1px 1px 3px 2px #C7ADAB; box-shadow: 1px 1px 3px 2px #C7ADAB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C7ADAB; -webkit-box-shadow: 1px 1px 3px 2px #C7ADAB; box-shadow:1px 1px 3px 2px #C7ADAB;">
Div content here</div>
This text has color #C7ADAB on black background.
This text has color #C7ADAB on white background.
This text has black color on #C7ADAB background.
This text has white color on #C7ADAB background.