HEX: #C0704A
RGB: (192,112,74)
#C0704A contains mainly red color. Web safe color of #C0704A is #CC6633 (or #C63).
#C0704A color RGB value is (192,112,74).
RGB: (192,112,74) (75%,44%,29%)
R 192 of 255 = 75%
G 112 of 255 = 44%
B 74 of 255 = 29%
R + G + B ~ 49%. #C0704A is middle color (not dark and not light).
R + G + B =
192 + 112 + 74 = 378 (100%)
R 192 of 378 ~ 50.79%
G 112 of 378 ~ 29.63%
B 74 of 378 ~ 19.58%
#C0704A color CMYK value is (0,42,61,25).
CMYK: (0,42,61,25) C0M42Y61K25 (0%,42%,61%,25%) (0.00/0.42/0.61/0.25)
C0 | 70 | 4A | |
---|---|---|---|
RGB | 192 | 112 | 74 |
HSL | 19° | 48.36% | 52.16% |
HSB/HSV | 19° | 61.46% | 75.29% |
CMYK | 0.00% | 41.67% | 61.46% |
24.71% |
HEX | C0 | 70 | 4A |
Decimal | 192 | 112 | 74 |
Binary | 11000000 | 1110000 | 1001010 |
Octal | 300 | 160 | 112 |
Examples of css and html codes for elements with #C0704A color. Also use rgb(192,112,74) instead hex code.
.myTextColor { color: #C0704A; }
<p style="color:#C0704A">This sample text font color is #C0704A.</p>
This text font color is #C0704A.
.myBgColor { background-color: #C0704A; }
<div style="background-color:#C0704A">Inner text</div>
This div background color is #C0704A.
.myBorderColor { border: 1px solid #C0704A; }
<div style="border:3px solid #C0704A">Div</div>
This div border color is #C0704A.
.myOpacity80 { color: #C0704A; opacity: 0.8; }
<p style="color:#C0704A;opacity:0.8;">80%</p>
Text with #C0704A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C0704A;}
<p style="text-shadow: 3px 3px 1px #C0704A">Text here.</p>
This text has shadow with #C0704A color.
.textShadow {text-shadow: 3px 3px 1px #C0704A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C0704A, 5px 5px 20px red">Text here.</p>
This text has shadow with #C0704A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C0704A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C0704A, Direction=45, Strength=4)">Text</p>
This text has shadow with #C0704A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C0704A; -webkit-box-shadow: 1px 1px 3px 2px #C0704A; box-shadow: 1px 1px 3px 2px #C0704A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C0704A; -webkit-box-shadow: 1px 1px 3px 2px #C0704A; box-shadow:1px 1px 3px 2px #C0704A;">
Div content here</div>
This text has color #C0704A on black background.
This text has color #C0704A on white background.
This text has black color on #C0704A background.
This text has white color on #C0704A background.