HEX: #C37872
RGB: (195,120,114)
#C37872 contains mainly red color. Web safe color of #C37872 is #CC6666 (or #C66).
#C37872 color RGB value is (195,120,114).
RGB: (195,120,114) (76%,47%,45%)
R 195 of 255 = 76%
G 120 of 255 = 47%
B 114 of 255 = 45%
R + G + B ~ 56%. #C37872 is middle color (not dark and not light).
R + G + B =
195 + 120 + 114 = 429 (100%)
R 195 of 429 ~ 45.45%
G 120 of 429 ~ 27.97%
B 114 of 429 ~ 26.57%
#C37872 color CMYK value is (0,38,42,24).
CMYK: (0,38,42,24) C0M38Y42K24 (0%,38%,42%,24%) (0.00/0.38/0.42/0.24)
C3 | 78 | 72 | |
---|---|---|---|
RGB | 195 | 120 | 114 |
HSL | 4° | 40.30% | 60.59% |
HSB/HSV | 4° | 41.54% | 76.47% |
CMYK | 0.00% | 38.46% | 41.54% |
23.53% |
HEX | C3 | 78 | 72 |
Decimal | 195 | 120 | 114 |
Binary | 11000011 | 1111000 | 1110010 |
Octal | 303 | 170 | 162 |
Examples of css and html codes for elements with #C37872 color. Also use rgb(195,120,114) instead hex code.
.myTextColor { color: #C37872; }
<p style="color:#C37872">This sample text font color is #C37872.</p>
This text font color is #C37872.
.myBgColor { background-color: #C37872; }
<div style="background-color:#C37872">Inner text</div>
This div background color is #C37872.
.myBorderColor { border: 1px solid #C37872; }
<div style="border:3px solid #C37872">Div</div>
This div border color is #C37872.
.myOpacity80 { color: #C37872; opacity: 0.8; }
<p style="color:#C37872;opacity:0.8;">80%</p>
Text with #C37872 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C37872;}
<p style="text-shadow: 3px 3px 1px #C37872">Text here.</p>
This text has shadow with #C37872 color.
.textShadow {text-shadow: 3px 3px 1px #C37872, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C37872, 5px 5px 20px red">Text here.</p>
This text has shadow with #C37872 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C37872, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C37872, Direction=45, Strength=4)">Text</p>
This text has shadow with #C37872 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C37872; -webkit-box-shadow: 1px 1px 3px 2px #C37872; box-shadow: 1px 1px 3px 2px #C37872; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C37872; -webkit-box-shadow: 1px 1px 3px 2px #C37872; box-shadow:1px 1px 3px 2px #C37872;">
Div content here</div>
This text has color #C37872 on black background.
This text has color #C37872 on white background.
This text has black color on #C37872 background.
This text has white color on #C37872 background.