HEX: #C4B562
RGB: (196,181,98)
#C4B562 contains mainly red and green colors. Web safe color of #C4B562 is #CCCC66 (or #CC6).
#C4B562 color RGB value is (196,181,98).
RGB: (196,181,98) (77%,71%,38%)
R 196 of 255 = 77%
G 181 of 255 = 71%
B 98 of 255 = 38%
R + G + B ~ 62%. #C4B562 is quite light color.
R + G + B =
196 + 181 + 98 = 475 (100%)
R 196 of 475 ~ 41.26%
G 181 of 475 ~ 38.11%
B 98 of 475 ~ 20.63%
#C4B562 color CMYK value is (0,8,50,23).
CMYK: (0,8,50,23) C0M8Y50K23 (0%,8%,50%,23%) (0.00/0.08/0.50/0.23)
C4 | B5 | 62 | |
---|---|---|---|
RGB | 196 | 181 | 98 |
HSL | 51° | 45.37% | 57.65% |
HSB/HSV | 51° | 50.00% | 76.86% |
CMYK | 0.00% | 7.65% | 50.00% |
23.14% |
HEX | C4 | B5 | 62 |
Decimal | 196 | 181 | 98 |
Binary | 11000100 | 10110101 | 1100010 |
Octal | 304 | 265 | 142 |
Examples of css and html codes for elements with #C4B562 color. Also use rgb(196,181,98) instead hex code.
.myTextColor { color: #C4B562; }
<p style="color:#C4B562">This sample text font color is #C4B562.</p>
This text font color is #C4B562.
.myBgColor { background-color: #C4B562; }
<div style="background-color:#C4B562">Inner text</div>
This div background color is #C4B562.
.myBorderColor { border: 1px solid #C4B562; }
<div style="border:3px solid #C4B562">Div</div>
This div border color is #C4B562.
.myOpacity80 { color: #C4B562; opacity: 0.8; }
<p style="color:#C4B562;opacity:0.8;">80%</p>
Text with #C4B562 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C4B562;}
<p style="text-shadow: 3px 3px 1px #C4B562">Text here.</p>
This text has shadow with #C4B562 color.
.textShadow {text-shadow: 3px 3px 1px #C4B562, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C4B562, 5px 5px 20px red">Text here.</p>
This text has shadow with #C4B562 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C4B562, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C4B562, Direction=45, Strength=4)">Text</p>
This text has shadow with #C4B562 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C4B562; -webkit-box-shadow: 1px 1px 3px 2px #C4B562; box-shadow: 1px 1px 3px 2px #C4B562; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C4B562; -webkit-box-shadow: 1px 1px 3px 2px #C4B562; box-shadow:1px 1px 3px 2px #C4B562;">
Div content here</div>
This text has color #C4B562 on black background.
This text has color #C4B562 on white background.
This text has black color on #C4B562 background.
This text has white color on #C4B562 background.