HEX: #C59489
RGB: (197,148,137)
#C59489 contains mainly red and green colors. Web safe color of #C59489 is #CC9999 (or #C99).
#C59489 color RGB value is (197,148,137).
RGB: (197,148,137) (77%,58%,54%)
R 197 of 255 = 77%
G 148 of 255 = 58%
B 137 of 255 = 54%
R + G + B ~ 63%. #C59489 is quite light color.
R + G + B =
197 + 148 + 137 = 482 (100%)
R 197 of 482 ~ 40.87%
G 148 of 482 ~ 30.71%
B 137 of 482 ~ 28.42%
#C59489 color CMYK value is (0,25,30,23).
CMYK: (0,25,30,23) C0M25Y30K23 (0%,25%,30%,23%) (0.00/0.25/0.30/0.23)
C5 | 94 | 89 | |
---|---|---|---|
RGB | 197 | 148 | 137 |
HSL | 11° | 34.09% | 65.49% |
HSB/HSV | 11° | 30.46% | 77.25% |
CMYK | 0.00% | 24.87% | 30.46% |
22.75% |
HEX | C5 | 94 | 89 |
Decimal | 197 | 148 | 137 |
Binary | 11000101 | 10010100 | 10001001 |
Octal | 305 | 224 | 211 |
Examples of css and html codes for elements with #C59489 color. Also use rgb(197,148,137) instead hex code.
.myTextColor { color: #C59489; }
<p style="color:#C59489">This sample text font color is #C59489.</p>
This text font color is #C59489.
.myBgColor { background-color: #C59489; }
<div style="background-color:#C59489">Inner text</div>
This div background color is #C59489.
.myBorderColor { border: 1px solid #C59489; }
<div style="border:3px solid #C59489">Div</div>
This div border color is #C59489.
.myOpacity80 { color: #C59489; opacity: 0.8; }
<p style="color:#C59489;opacity:0.8;">80%</p>
Text with #C59489 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C59489;}
<p style="text-shadow: 3px 3px 1px #C59489">Text here.</p>
This text has shadow with #C59489 color.
.textShadow {text-shadow: 3px 3px 1px #C59489, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C59489, 5px 5px 20px red">Text here.</p>
This text has shadow with #C59489 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C59489, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C59489, Direction=45, Strength=4)">Text</p>
This text has shadow with #C59489 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C59489; -webkit-box-shadow: 1px 1px 3px 2px #C59489; box-shadow: 1px 1px 3px 2px #C59489; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C59489; -webkit-box-shadow: 1px 1px 3px 2px #C59489; box-shadow:1px 1px 3px 2px #C59489;">
Div content here</div>
This text has color #C59489 on black background.
This text has color #C59489 on white background.
This text has black color on #C59489 background.
This text has white color on #C59489 background.