HEX: #C8A476
RGB: (200,164,118)
#C8A476 contains mainly red and green colors. Web safe color of #C8A476 is #CC9966 (or #C96).
#C8A476 color RGB value is (200,164,118).
RGB: (200,164,118) (78%,64%,46%)
R 200 of 255 = 78%
G 164 of 255 = 64%
B 118 of 255 = 46%
R + G + B ~ 63%. #C8A476 is quite light color.
R + G + B =
200 + 164 + 118 = 482 (100%)
R 200 of 482 ~ 41.49%
G 164 of 482 ~ 34.02%
B 118 of 482 ~ 24.48%
#C8A476 color CMYK value is (0,18,41,22).
CMYK: (0,18,41,22) C0M18Y41K22 (0%,18%,41%,22%) (0.00/0.18/0.41/0.22)
C8 | A4 | 76 | |
---|---|---|---|
RGB | 200 | 164 | 118 |
HSL | 34° | 42.71% | 62.35% |
HSB/HSV | 34° | 41.00% | 78.43% |
CMYK | 0.00% | 18.00% | 41.00% |
21.57% |
HEX | C8 | A4 | 76 |
Decimal | 200 | 164 | 118 |
Binary | 11001000 | 10100100 | 1110110 |
Octal | 310 | 244 | 166 |
Examples of css and html codes for elements with #C8A476 color. Also use rgb(200,164,118) instead hex code.
.myTextColor { color: #C8A476; }
<p style="color:#C8A476">This sample text font color is #C8A476.</p>
This text font color is #C8A476.
.myBgColor { background-color: #C8A476; }
<div style="background-color:#C8A476">Inner text</div>
This div background color is #C8A476.
.myBorderColor { border: 1px solid #C8A476; }
<div style="border:3px solid #C8A476">Div</div>
This div border color is #C8A476.
.myOpacity80 { color: #C8A476; opacity: 0.8; }
<p style="color:#C8A476;opacity:0.8;">80%</p>
Text with #C8A476 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C8A476;}
<p style="text-shadow: 3px 3px 1px #C8A476">Text here.</p>
This text has shadow with #C8A476 color.
.textShadow {text-shadow: 3px 3px 1px #C8A476, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C8A476, 5px 5px 20px red">Text here.</p>
This text has shadow with #C8A476 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C8A476, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C8A476, Direction=45, Strength=4)">Text</p>
This text has shadow with #C8A476 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C8A476; -webkit-box-shadow: 1px 1px 3px 2px #C8A476; box-shadow: 1px 1px 3px 2px #C8A476; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C8A476; -webkit-box-shadow: 1px 1px 3px 2px #C8A476; box-shadow:1px 1px 3px 2px #C8A476;">
Div content here</div>
This text has color #C8A476 on black background.
This text has color #C8A476 on white background.
This text has black color on #C8A476 background.
This text has white color on #C8A476 background.