HEX: #C9A76D
RGB: (201,167,109)
#C9A76D contains mainly red and green colors. Web safe color of #C9A76D is #CC9966 (or #C96).
#C9A76D color RGB value is (201,167,109).
RGB: (201,167,109) (79%,65%,43%)
R 201 of 255 = 79%
G 167 of 255 = 65%
B 109 of 255 = 43%
R + G + B ~ 62%. #C9A76D is quite light color.
R + G + B =
201 + 167 + 109 = 477 (100%)
R 201 of 477 ~ 42.14%
G 167 of 477 ~ 35.01%
B 109 of 477 ~ 22.85%
#C9A76D color CMYK value is (0,17,46,21).
CMYK: (0,17,46,21) C0M17Y46K21 (0%,17%,46%,21%) (0.00/0.17/0.46/0.21)
C9 | A7 | 6D | |
---|---|---|---|
RGB | 201 | 167 | 109 |
HSL | 38° | 46.00% | 60.78% |
HSB/HSV | 38° | 45.77% | 78.82% |
CMYK | 0.00% | 16.92% | 45.77% |
21.18% |
HEX | C9 | A7 | 6D |
Decimal | 201 | 167 | 109 |
Binary | 11001001 | 10100111 | 1101101 |
Octal | 311 | 247 | 155 |
Examples of css and html codes for elements with #C9A76D color. Also use rgb(201,167,109) instead hex code.
.myTextColor { color: #C9A76D; }
<p style="color:#C9A76D">This sample text font color is #C9A76D.</p>
This text font color is #C9A76D.
.myBgColor { background-color: #C9A76D; }
<div style="background-color:#C9A76D">Inner text</div>
This div background color is #C9A76D.
.myBorderColor { border: 1px solid #C9A76D; }
<div style="border:3px solid #C9A76D">Div</div>
This div border color is #C9A76D.
.myOpacity80 { color: #C9A76D; opacity: 0.8; }
<p style="color:#C9A76D;opacity:0.8;">80%</p>
Text with #C9A76D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C9A76D;}
<p style="text-shadow: 3px 3px 1px #C9A76D">Text here.</p>
This text has shadow with #C9A76D color.
.textShadow {text-shadow: 3px 3px 1px #C9A76D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C9A76D, 5px 5px 20px red">Text here.</p>
This text has shadow with #C9A76D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C9A76D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C9A76D, Direction=45, Strength=4)">Text</p>
This text has shadow with #C9A76D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C9A76D; -webkit-box-shadow: 1px 1px 3px 2px #C9A76D; box-shadow: 1px 1px 3px 2px #C9A76D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C9A76D; -webkit-box-shadow: 1px 1px 3px 2px #C9A76D; box-shadow:1px 1px 3px 2px #C9A76D;">
Div content here</div>
This text has color #C9A76D on black background.
This text has color #C9A76D on white background.
This text has black color on #C9A76D background.
This text has white color on #C9A76D background.