HEX: #C44C74
RGB: (196,76,116)
#C44C74 contains mainly red color. Web safe color of #C44C74 is #CC3366 (or #C36).
#C44C74 color RGB value is (196,76,116).
RGB: (196,76,116) (77%,30%,45%)
R 196 of 255 = 77%
G 76 of 255 = 30%
B 116 of 255 = 45%
R + G + B ~ 51%. #C44C74 is middle color (not dark and not light).
R + G + B =
196 + 76 + 116 = 388 (100%)
R 196 of 388 ~ 50.52%
G 76 of 388 ~ 19.59%
B 116 of 388 ~ 29.9%
#C44C74 color CMYK value is (0,61,41,23).
CMYK: (0,61,41,23) C0M61Y41K23 (0%,61%,41%,23%) (0.00/0.61/0.41/0.23)
C4 | 4C | 74 | |
---|---|---|---|
RGB | 196 | 76 | 116 |
HSL | 340° | 50.42% | 53.33% |
HSB/HSV | 340° | 61.22% | 76.86% |
CMYK | 0.00% | 61.22% | 40.82% |
23.14% |
HEX | C4 | 4C | 74 |
Decimal | 196 | 76 | 116 |
Binary | 11000100 | 1001100 | 1110100 |
Octal | 304 | 114 | 164 |
Examples of css and html codes for elements with #C44C74 color. Also use rgb(196,76,116) instead hex code.
.myTextColor { color: #C44C74; }
<p style="color:#C44C74">This sample text font color is #C44C74.</p>
This text font color is #C44C74.
.myBgColor { background-color: #C44C74; }
<div style="background-color:#C44C74">Inner text</div>
This div background color is #C44C74.
.myBorderColor { border: 1px solid #C44C74; }
<div style="border:3px solid #C44C74">Div</div>
This div border color is #C44C74.
.myOpacity80 { color: #C44C74; opacity: 0.8; }
<p style="color:#C44C74;opacity:0.8;">80%</p>
Text with #C44C74 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C44C74;}
<p style="text-shadow: 3px 3px 1px #C44C74">Text here.</p>
This text has shadow with #C44C74 color.
.textShadow {text-shadow: 3px 3px 1px #C44C74, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C44C74, 5px 5px 20px red">Text here.</p>
This text has shadow with #C44C74 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C44C74, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C44C74, Direction=45, Strength=4)">Text</p>
This text has shadow with #C44C74 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C44C74; -webkit-box-shadow: 1px 1px 3px 2px #C44C74; box-shadow: 1px 1px 3px 2px #C44C74; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C44C74; -webkit-box-shadow: 1px 1px 3px 2px #C44C74; box-shadow:1px 1px 3px 2px #C44C74;">
Div content here</div>
This text has color #C44C74 on black background.
This text has color #C44C74 on white background.
This text has black color on #C44C74 background.
This text has white color on #C44C74 background.