HEX: #C6755E
RGB: (198,117,94)
#C6755E contains mainly red color. Web safe color of #C6755E is #CC6666 (or #C66).
#C6755E color RGB value is (198,117,94).
RGB: (198,117,94) (78%,46%,37%)
R 198 of 255 = 78%
G 117 of 255 = 46%
B 94 of 255 = 37%
R + G + B ~ 54%. #C6755E is middle color (not dark and not light).
R + G + B =
198 + 117 + 94 = 409 (100%)
R 198 of 409 ~ 48.41%
G 117 of 409 ~ 28.61%
B 94 of 409 ~ 22.98%
#C6755E color CMYK value is (0,41,53,22).
CMYK: (0,41,53,22) C0M41Y53K22 (0%,41%,53%,22%) (0.00/0.41/0.53/0.22)
C6 | 75 | 5E | |
---|---|---|---|
RGB | 198 | 117 | 94 |
HSL | 13° | 47.71% | 57.25% |
HSB/HSV | 13° | 52.53% | 77.65% |
CMYK | 0.00% | 40.91% | 52.53% |
22.35% |
HEX | C6 | 75 | 5E |
Decimal | 198 | 117 | 94 |
Binary | 11000110 | 1110101 | 1011110 |
Octal | 306 | 165 | 136 |
Examples of css and html codes for elements with #C6755E color. Also use rgb(198,117,94) instead hex code.
.myTextColor { color: #C6755E; }
<p style="color:#C6755E">This sample text font color is #C6755E.</p>
This text font color is #C6755E.
.myBgColor { background-color: #C6755E; }
<div style="background-color:#C6755E">Inner text</div>
This div background color is #C6755E.
.myBorderColor { border: 1px solid #C6755E; }
<div style="border:3px solid #C6755E">Div</div>
This div border color is #C6755E.
.myOpacity80 { color: #C6755E; opacity: 0.8; }
<p style="color:#C6755E;opacity:0.8;">80%</p>
Text with #C6755E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C6755E;}
<p style="text-shadow: 3px 3px 1px #C6755E">Text here.</p>
This text has shadow with #C6755E color.
.textShadow {text-shadow: 3px 3px 1px #C6755E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C6755E, 5px 5px 20px red">Text here.</p>
This text has shadow with #C6755E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C6755E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C6755E, Direction=45, Strength=4)">Text</p>
This text has shadow with #C6755E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C6755E; -webkit-box-shadow: 1px 1px 3px 2px #C6755E; box-shadow: 1px 1px 3px 2px #C6755E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C6755E; -webkit-box-shadow: 1px 1px 3px 2px #C6755E; box-shadow:1px 1px 3px 2px #C6755E;">
Div content here</div>
This text has color #C6755E on black background.
This text has color #C6755E on white background.
This text has black color on #C6755E background.
This text has white color on #C6755E background.