HEX: #C59480
RGB: (197,148,128)
#C59480 contains mainly red and green colors. Web safe color of #C59480 is #CC9966 (or #C96).
#C59480 color RGB value is (197,148,128).
RGB: (197,148,128) (77%,58%,50%)
R 197 of 255 = 77%
G 148 of 255 = 58%
B 128 of 255 = 50%
R + G + B ~ 62%. #C59480 is quite light color.
R + G + B =
197 + 148 + 128 = 473 (100%)
R 197 of 473 ~ 41.65%
G 148 of 473 ~ 31.29%
B 128 of 473 ~ 27.06%
#C59480 color CMYK value is (0,25,35,23).
CMYK: (0,25,35,23) C0M25Y35K23 (0%,25%,35%,23%) (0.00/0.25/0.35/0.23)
C5 | 94 | 80 | |
---|---|---|---|
RGB | 197 | 148 | 128 |
HSL | 17° | 37.30% | 63.73% |
HSB/HSV | 17° | 35.03% | 77.25% |
CMYK | 0.00% | 24.87% | 35.03% |
22.75% |
HEX | C5 | 94 | 80 |
Decimal | 197 | 148 | 128 |
Binary | 11000101 | 10010100 | 10000000 |
Octal | 305 | 224 | 200 |
Examples of css and html codes for elements with #C59480 color. Also use rgb(197,148,128) instead hex code.
.myTextColor { color: #C59480; }
<p style="color:#C59480">This sample text font color is #C59480.</p>
This text font color is #C59480.
.myBgColor { background-color: #C59480; }
<div style="background-color:#C59480">Inner text</div>
This div background color is #C59480.
.myBorderColor { border: 1px solid #C59480; }
<div style="border:3px solid #C59480">Div</div>
This div border color is #C59480.
.myOpacity80 { color: #C59480; opacity: 0.8; }
<p style="color:#C59480;opacity:0.8;">80%</p>
Text with #C59480 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C59480;}
<p style="text-shadow: 3px 3px 1px #C59480">Text here.</p>
This text has shadow with #C59480 color.
.textShadow {text-shadow: 3px 3px 1px #C59480, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C59480, 5px 5px 20px red">Text here.</p>
This text has shadow with #C59480 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C59480, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C59480, Direction=45, Strength=4)">Text</p>
This text has shadow with #C59480 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C59480; -webkit-box-shadow: 1px 1px 3px 2px #C59480; box-shadow: 1px 1px 3px 2px #C59480; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C59480; -webkit-box-shadow: 1px 1px 3px 2px #C59480; box-shadow:1px 1px 3px 2px #C59480;">
Div content here</div>
This text has color #C59480 on black background.
This text has color #C59480 on white background.
This text has black color on #C59480 background.
This text has white color on #C59480 background.