HEX: #C9A0AD
RGB: (201,160,173)
#C9A0AD contains red, green and blue colors in about the same proportion. Web safe color of #C9A0AD is #CC9999 (or #C99).
#C9A0AD color RGB value is (201,160,173).
RGB: (201,160,173) (79%,63%,68%)
R 201 of 255 = 79%
G 160 of 255 = 63%
B 173 of 255 = 68%
R + G + B ~ 70%. #C9A0AD is quite light color.
R + G + B =
201 + 160 + 173 = 534 (100%)
R 201 of 534 ~ 37.64%
G 160 of 534 ~ 29.96%
B 173 of 534 ~ 32.4%
#C9A0AD color CMYK value is (0,20,14,21).
CMYK: (0,20,14,21) C0M20Y14K21 (0%,20%,14%,21%) (0.00/0.20/0.14/0.21)
C9 | A0 | AD | |
---|---|---|---|
RGB | 201 | 160 | 173 |
HSL | 341° | 27.52% | 70.78% |
HSB/HSV | 341° | 20.40% | 78.82% |
CMYK | 0.00% | 20.40% | 13.93% |
21.18% |
HEX | C9 | A0 | AD |
Decimal | 201 | 160 | 173 |
Binary | 11001001 | 10100000 | 10101101 |
Octal | 311 | 240 | 255 |
Examples of css and html codes for elements with #C9A0AD color. Also use rgb(201,160,173) instead hex code.
.myTextColor { color: #C9A0AD; }
<p style="color:#C9A0AD">This sample text font color is #C9A0AD.</p>
This text font color is #C9A0AD.
.myBgColor { background-color: #C9A0AD; }
<div style="background-color:#C9A0AD">Inner text</div>
This div background color is #C9A0AD.
.myBorderColor { border: 1px solid #C9A0AD; }
<div style="border:3px solid #C9A0AD">Div</div>
This div border color is #C9A0AD.
.myOpacity80 { color: #C9A0AD; opacity: 0.8; }
<p style="color:#C9A0AD;opacity:0.8;">80%</p>
Text with #C9A0AD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C9A0AD;}
<p style="text-shadow: 3px 3px 1px #C9A0AD">Text here.</p>
This text has shadow with #C9A0AD color.
.textShadow {text-shadow: 3px 3px 1px #C9A0AD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C9A0AD, 5px 5px 20px red">Text here.</p>
This text has shadow with #C9A0AD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C9A0AD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C9A0AD, Direction=45, Strength=4)">Text</p>
This text has shadow with #C9A0AD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C9A0AD; -webkit-box-shadow: 1px 1px 3px 2px #C9A0AD; box-shadow: 1px 1px 3px 2px #C9A0AD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C9A0AD; -webkit-box-shadow: 1px 1px 3px 2px #C9A0AD; box-shadow:1px 1px 3px 2px #C9A0AD;">
Div content here</div>
This text has color #C9A0AD on black background.
This text has color #C9A0AD on white background.
This text has black color on #C9A0AD background.
This text has white color on #C9A0AD background.