HEX: #C59683
RGB: (197,150,131)
#C59683 contains mainly red and green colors. Web safe color of #C59683 is #CC9999 (or #C99).
#C59683 color RGB value is (197,150,131).
RGB: (197,150,131) (77%,59%,51%)
R 197 of 255 = 77%
G 150 of 255 = 59%
B 131 of 255 = 51%
R + G + B ~ 62%. #C59683 is quite light color.
R + G + B =
197 + 150 + 131 = 478 (100%)
R 197 of 478 ~ 41.21%
G 150 of 478 ~ 31.38%
B 131 of 478 ~ 27.41%
#C59683 color CMYK value is (0,24,34,23).
CMYK: (0,24,34,23) C0M24Y34K23 (0%,24%,34%,23%) (0.00/0.24/0.34/0.23)
C5 | 96 | 83 | |
---|---|---|---|
RGB | 197 | 150 | 131 |
HSL | 17° | 36.26% | 64.31% |
HSB/HSV | 17° | 33.50% | 77.25% |
CMYK | 0.00% | 23.86% | 33.50% |
22.75% |
HEX | C5 | 96 | 83 |
Decimal | 197 | 150 | 131 |
Binary | 11000101 | 10010110 | 10000011 |
Octal | 305 | 226 | 203 |
Examples of css and html codes for elements with #C59683 color. Also use rgb(197,150,131) instead hex code.
.myTextColor { color: #C59683; }
<p style="color:#C59683">This sample text font color is #C59683.</p>
This text font color is #C59683.
.myBgColor { background-color: #C59683; }
<div style="background-color:#C59683">Inner text</div>
This div background color is #C59683.
.myBorderColor { border: 1px solid #C59683; }
<div style="border:3px solid #C59683">Div</div>
This div border color is #C59683.
.myOpacity80 { color: #C59683; opacity: 0.8; }
<p style="color:#C59683;opacity:0.8;">80%</p>
Text with #C59683 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C59683;}
<p style="text-shadow: 3px 3px 1px #C59683">Text here.</p>
This text has shadow with #C59683 color.
.textShadow {text-shadow: 3px 3px 1px #C59683, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C59683, 5px 5px 20px red">Text here.</p>
This text has shadow with #C59683 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C59683, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C59683, Direction=45, Strength=4)">Text</p>
This text has shadow with #C59683 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C59683; -webkit-box-shadow: 1px 1px 3px 2px #C59683; box-shadow: 1px 1px 3px 2px #C59683; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C59683; -webkit-box-shadow: 1px 1px 3px 2px #C59683; box-shadow:1px 1px 3px 2px #C59683;">
Div content here</div>
This text has color #C59683 on black background.
This text has color #C59683 on white background.
This text has black color on #C59683 background.
This text has white color on #C59683 background.