HEX: #C4B676
RGB: (196,182,118)
#C4B676 contains mainly red and green colors. Web safe color of #C4B676 is #CCCC66 (or #CC6).
#C4B676 color RGB value is (196,182,118).
RGB: (196,182,118) (77%,71%,46%)
R 196 of 255 = 77%
G 182 of 255 = 71%
B 118 of 255 = 46%
R + G + B ~ 65%. #C4B676 is quite light color.
R + G + B =
196 + 182 + 118 = 496 (100%)
R 196 of 496 ~ 39.52%
G 182 of 496 ~ 36.69%
B 118 of 496 ~ 23.79%
#C4B676 color CMYK value is (0,7,40,23).
CMYK: (0,7,40,23) C0M7Y40K23 (0%,7%,40%,23%) (0.00/0.07/0.40/0.23)
C4 | B6 | 76 | |
---|---|---|---|
RGB | 196 | 182 | 118 |
HSL | 49° | 39.80% | 61.57% |
HSB/HSV | 49° | 39.80% | 76.86% |
CMYK | 0.00% | 7.14% | 39.80% |
23.14% |
HEX | C4 | B6 | 76 |
Decimal | 196 | 182 | 118 |
Binary | 11000100 | 10110110 | 1110110 |
Octal | 304 | 266 | 166 |
Examples of css and html codes for elements with #C4B676 color. Also use rgb(196,182,118) instead hex code.
.myTextColor { color: #C4B676; }
<p style="color:#C4B676">This sample text font color is #C4B676.</p>
This text font color is #C4B676.
.myBgColor { background-color: #C4B676; }
<div style="background-color:#C4B676">Inner text</div>
This div background color is #C4B676.
.myBorderColor { border: 1px solid #C4B676; }
<div style="border:3px solid #C4B676">Div</div>
This div border color is #C4B676.
.myOpacity80 { color: #C4B676; opacity: 0.8; }
<p style="color:#C4B676;opacity:0.8;">80%</p>
Text with #C4B676 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C4B676;}
<p style="text-shadow: 3px 3px 1px #C4B676">Text here.</p>
This text has shadow with #C4B676 color.
.textShadow {text-shadow: 3px 3px 1px #C4B676, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C4B676, 5px 5px 20px red">Text here.</p>
This text has shadow with #C4B676 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C4B676, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C4B676, Direction=45, Strength=4)">Text</p>
This text has shadow with #C4B676 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C4B676; -webkit-box-shadow: 1px 1px 3px 2px #C4B676; box-shadow: 1px 1px 3px 2px #C4B676; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C4B676; -webkit-box-shadow: 1px 1px 3px 2px #C4B676; box-shadow:1px 1px 3px 2px #C4B676;">
Div content here</div>
This text has color #C4B676 on black background.
This text has color #C4B676 on white background.
This text has black color on #C4B676 background.
This text has white color on #C4B676 background.