HEX: #C6836D
RGB: (198,131,109)
#C6836D contains mainly red color. Web safe color of #C6836D is #CC9966 (or #C96).
#C6836D color RGB value is (198,131,109).
RGB: (198,131,109) (78%,51%,43%)
R 198 of 255 = 78%
G 131 of 255 = 51%
B 109 of 255 = 43%
R + G + B ~ 57%. #C6836D is middle color (not dark and not light).
R + G + B =
198 + 131 + 109 = 438 (100%)
R 198 of 438 ~ 45.21%
G 131 of 438 ~ 29.91%
B 109 of 438 ~ 24.89%
#C6836D color CMYK value is (0,34,45,22).
CMYK: (0,34,45,22) C0M34Y45K22 (0%,34%,45%,22%) (0.00/0.34/0.45/0.22)
C6 | 83 | 6D | |
---|---|---|---|
RGB | 198 | 131 | 109 |
HSL | 15° | 43.84% | 60.20% |
HSB/HSV | 15° | 44.95% | 77.65% |
CMYK | 0.00% | 33.84% | 44.95% |
22.35% |
HEX | C6 | 83 | 6D |
Decimal | 198 | 131 | 109 |
Binary | 11000110 | 10000011 | 1101101 |
Octal | 306 | 203 | 155 |
Examples of css and html codes for elements with #C6836D color. Also use rgb(198,131,109) instead hex code.
.myTextColor { color: #C6836D; }
<p style="color:#C6836D">This sample text font color is #C6836D.</p>
This text font color is #C6836D.
.myBgColor { background-color: #C6836D; }
<div style="background-color:#C6836D">Inner text</div>
This div background color is #C6836D.
.myBorderColor { border: 1px solid #C6836D; }
<div style="border:3px solid #C6836D">Div</div>
This div border color is #C6836D.
.myOpacity80 { color: #C6836D; opacity: 0.8; }
<p style="color:#C6836D;opacity:0.8;">80%</p>
Text with #C6836D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C6836D;}
<p style="text-shadow: 3px 3px 1px #C6836D">Text here.</p>
This text has shadow with #C6836D color.
.textShadow {text-shadow: 3px 3px 1px #C6836D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C6836D, 5px 5px 20px red">Text here.</p>
This text has shadow with #C6836D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C6836D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C6836D, Direction=45, Strength=4)">Text</p>
This text has shadow with #C6836D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C6836D; -webkit-box-shadow: 1px 1px 3px 2px #C6836D; box-shadow: 1px 1px 3px 2px #C6836D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C6836D; -webkit-box-shadow: 1px 1px 3px 2px #C6836D; box-shadow:1px 1px 3px 2px #C6836D;">
Div content here</div>
This text has color #C6836D on black background.
This text has color #C6836D on white background.
This text has black color on #C6836D background.
This text has white color on #C6836D background.