HEX: #C67361
RGB: (198,115,97)
#C67361 contains mainly red color. Web safe color of #C67361 is #CC6666 (or #C66).
#C67361 color RGB value is (198,115,97).
RGB: (198,115,97) (78%,45%,38%)
R 198 of 255 = 78%
G 115 of 255 = 45%
B 97 of 255 = 38%
R + G + B ~ 54%. #C67361 is middle color (not dark and not light).
R + G + B =
198 + 115 + 97 = 410 (100%)
R 198 of 410 ~ 48.29%
G 115 of 410 ~ 28.05%
B 97 of 410 ~ 23.66%
#C67361 color CMYK value is (0,42,51,22).
CMYK: (0,42,51,22) C0M42Y51K22 (0%,42%,51%,22%) (0.00/0.42/0.51/0.22)
C6 | 73 | 61 | |
---|---|---|---|
RGB | 198 | 115 | 97 |
HSL | 11° | 46.98% | 57.84% |
HSB/HSV | 11° | 51.01% | 77.65% |
CMYK | 0.00% | 41.92% | 51.01% |
22.35% |
HEX | C6 | 73 | 61 |
Decimal | 198 | 115 | 97 |
Binary | 11000110 | 1110011 | 1100001 |
Octal | 306 | 163 | 141 |
Examples of css and html codes for elements with #C67361 color. Also use rgb(198,115,97) instead hex code.
.myTextColor { color: #C67361; }
<p style="color:#C67361">This sample text font color is #C67361.</p>
This text font color is #C67361.
.myBgColor { background-color: #C67361; }
<div style="background-color:#C67361">Inner text</div>
This div background color is #C67361.
.myBorderColor { border: 1px solid #C67361; }
<div style="border:3px solid #C67361">Div</div>
This div border color is #C67361.
.myOpacity80 { color: #C67361; opacity: 0.8; }
<p style="color:#C67361;opacity:0.8;">80%</p>
Text with #C67361 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C67361;}
<p style="text-shadow: 3px 3px 1px #C67361">Text here.</p>
This text has shadow with #C67361 color.
.textShadow {text-shadow: 3px 3px 1px #C67361, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C67361, 5px 5px 20px red">Text here.</p>
This text has shadow with #C67361 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C67361, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C67361, Direction=45, Strength=4)">Text</p>
This text has shadow with #C67361 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C67361; -webkit-box-shadow: 1px 1px 3px 2px #C67361; box-shadow: 1px 1px 3px 2px #C67361; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C67361; -webkit-box-shadow: 1px 1px 3px 2px #C67361; box-shadow:1px 1px 3px 2px #C67361;">
Div content here</div>
This text has color #C67361 on black background.
This text has color #C67361 on white background.
This text has black color on #C67361 background.
This text has white color on #C67361 background.