HEX: #C59871
RGB: (197,152,113)
#C59871 contains mainly red and green colors. Web safe color of #C59871 is #CC9966 (or #C96).
#C59871 color RGB value is (197,152,113).
RGB: (197,152,113) (77%,60%,44%)
R 197 of 255 = 77%
G 152 of 255 = 60%
B 113 of 255 = 44%
R + G + B ~ 60%. #C59871 is middle color (not dark and not light).
R + G + B =
197 + 152 + 113 = 462 (100%)
R 197 of 462 ~ 42.64%
G 152 of 462 ~ 32.9%
B 113 of 462 ~ 24.46%
#C59871 color CMYK value is (0,23,43,23).
CMYK: (0,23,43,23) C0M23Y43K23 (0%,23%,43%,23%) (0.00/0.23/0.43/0.23)
C5 | 98 | 71 | |
---|---|---|---|
RGB | 197 | 152 | 113 |
HSL | 28° | 42.00% | 60.78% |
HSB/HSV | 28° | 42.64% | 77.25% |
CMYK | 0.00% | 22.84% | 42.64% |
22.75% |
HEX | C5 | 98 | 71 |
Decimal | 197 | 152 | 113 |
Binary | 11000101 | 10011000 | 1110001 |
Octal | 305 | 230 | 161 |
Examples of css and html codes for elements with #C59871 color. Also use rgb(197,152,113) instead hex code.
.myTextColor { color: #C59871; }
<p style="color:#C59871">This sample text font color is #C59871.</p>
This text font color is #C59871.
.myBgColor { background-color: #C59871; }
<div style="background-color:#C59871">Inner text</div>
This div background color is #C59871.
.myBorderColor { border: 1px solid #C59871; }
<div style="border:3px solid #C59871">Div</div>
This div border color is #C59871.
.myOpacity80 { color: #C59871; opacity: 0.8; }
<p style="color:#C59871;opacity:0.8;">80%</p>
Text with #C59871 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C59871;}
<p style="text-shadow: 3px 3px 1px #C59871">Text here.</p>
This text has shadow with #C59871 color.
.textShadow {text-shadow: 3px 3px 1px #C59871, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C59871, 5px 5px 20px red">Text here.</p>
This text has shadow with #C59871 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C59871, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C59871, Direction=45, Strength=4)">Text</p>
This text has shadow with #C59871 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C59871; -webkit-box-shadow: 1px 1px 3px 2px #C59871; box-shadow: 1px 1px 3px 2px #C59871; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C59871; -webkit-box-shadow: 1px 1px 3px 2px #C59871; box-shadow:1px 1px 3px 2px #C59871;">
Div content here</div>
This text has color #C59871 on black background.
This text has color #C59871 on white background.
This text has black color on #C59871 background.
This text has white color on #C59871 background.