HEX: #C9C5AD
RGB: (201,197,173)
#C9C5AD contains red, green and blue colors in about the same proportion. Web safe color of #C9C5AD is #CCCC99 (or #CC9).
#C9C5AD color RGB value is (201,197,173).
RGB: (201,197,173) (79%,77%,68%)
R 201 of 255 = 79%
G 197 of 255 = 77%
B 173 of 255 = 68%
R + G + B ~ 75%. #C9C5AD is quite light color.
R + G + B =
201 + 197 + 173 = 571 (100%)
R 201 of 571 ~ 35.2%
G 197 of 571 ~ 34.5%
B 173 of 571 ~ 30.3%
#C9C5AD color CMYK value is (0,2,14,21).
CMYK: (0,2,14,21) C0M2Y14K21 (0%,2%,14%,21%) (0.00/0.02/0.14/0.21)
C9 | C5 | AD | |
---|---|---|---|
RGB | 201 | 197 | 173 |
HSL | 51° | 20.59% | 73.33% |
HSB/HSV | 51° | 13.93% | 78.82% |
CMYK | 0.00% | 1.99% | 13.93% |
21.18% |
HEX | C9 | C5 | AD |
Decimal | 201 | 197 | 173 |
Binary | 11001001 | 11000101 | 10101101 |
Octal | 311 | 305 | 255 |
Examples of css and html codes for elements with #C9C5AD color. Also use rgb(201,197,173) instead hex code.
.myTextColor { color: #C9C5AD; }
<p style="color:#C9C5AD">This sample text font color is #C9C5AD.</p>
This text font color is #C9C5AD.
.myBgColor { background-color: #C9C5AD; }
<div style="background-color:#C9C5AD">Inner text</div>
This div background color is #C9C5AD.
.myBorderColor { border: 1px solid #C9C5AD; }
<div style="border:3px solid #C9C5AD">Div</div>
This div border color is #C9C5AD.
.myOpacity80 { color: #C9C5AD; opacity: 0.8; }
<p style="color:#C9C5AD;opacity:0.8;">80%</p>
Text with #C9C5AD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C9C5AD;}
<p style="text-shadow: 3px 3px 1px #C9C5AD">Text here.</p>
This text has shadow with #C9C5AD color.
.textShadow {text-shadow: 3px 3px 1px #C9C5AD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C9C5AD, 5px 5px 20px red">Text here.</p>
This text has shadow with #C9C5AD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C9C5AD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C9C5AD, Direction=45, Strength=4)">Text</p>
This text has shadow with #C9C5AD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C9C5AD; -webkit-box-shadow: 1px 1px 3px 2px #C9C5AD; box-shadow: 1px 1px 3px 2px #C9C5AD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C9C5AD; -webkit-box-shadow: 1px 1px 3px 2px #C9C5AD; box-shadow:1px 1px 3px 2px #C9C5AD;">
Div content here</div>
This text has color #C9C5AD on black background.
This text has color #C9C5AD on white background.
This text has black color on #C9C5AD background.
This text has white color on #C9C5AD background.