HEX: #C44A2C
RGB: (196,74,44)
#C44A2C contains mainly red color. Web safe color of #C44A2C is #CC3333 (or #C33).
#C44A2C color RGB value is (196,74,44).
RGB: (196,74,44) (77%,29%,17%)
R 196 of 255 = 77%
G 74 of 255 = 29%
B 44 of 255 = 17%
R + G + B ~ 41%. #C44A2C is middle color (not dark and not light).
R + G + B =
196 + 74 + 44 = 314 (100%)
R 196 of 314 ~ 62.42%
G 74 of 314 ~ 23.57%
B 44 of 314 ~ 14.01%
#C44A2C color CMYK value is (0,62,78,23).
CMYK: (0,62,78,23) C0M62Y78K23 (0%,62%,78%,23%) (0.00/0.62/0.78/0.23)
C4 | 4A | 2C | |
---|---|---|---|
RGB | 196 | 74 | 44 |
HSL | 12° | 63.33% | 47.06% |
HSB/HSV | 12° | 77.55% | 76.86% |
CMYK | 0.00% | 62.24% | 77.55% |
23.14% |
HEX | C4 | 4A | 2C |
Decimal | 196 | 74 | 44 |
Binary | 11000100 | 1001010 | 101100 |
Octal | 304 | 112 | 54 |
Examples of css and html codes for elements with #C44A2C color. Also use rgb(196,74,44) instead hex code.
.myTextColor { color: #C44A2C; }
<p style="color:#C44A2C">This sample text font color is #C44A2C.</p>
This text font color is #C44A2C.
.myBgColor { background-color: #C44A2C; }
<div style="background-color:#C44A2C">Inner text</div>
This div background color is #C44A2C.
.myBorderColor { border: 1px solid #C44A2C; }
<div style="border:3px solid #C44A2C">Div</div>
This div border color is #C44A2C.
.myOpacity80 { color: #C44A2C; opacity: 0.8; }
<p style="color:#C44A2C;opacity:0.8;">80%</p>
Text with #C44A2C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C44A2C;}
<p style="text-shadow: 3px 3px 1px #C44A2C">Text here.</p>
This text has shadow with #C44A2C color.
.textShadow {text-shadow: 3px 3px 1px #C44A2C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C44A2C, 5px 5px 20px red">Text here.</p>
This text has shadow with #C44A2C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C44A2C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C44A2C, Direction=45, Strength=4)">Text</p>
This text has shadow with #C44A2C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C44A2C; -webkit-box-shadow: 1px 1px 3px 2px #C44A2C; box-shadow: 1px 1px 3px 2px #C44A2C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C44A2C; -webkit-box-shadow: 1px 1px 3px 2px #C44A2C; box-shadow:1px 1px 3px 2px #C44A2C;">
Div content here</div>
This text has color #C44A2C on black background.
This text has color #C44A2C on white background.
This text has black color on #C44A2C background.
This text has white color on #C44A2C background.