HEX: #C4414D
RGB: (196,65,77)
#C4414D contains mainly red color. Web safe color of #C4414D is #CC3333 (or #C33).
#C4414D color RGB value is (196,65,77).
RGB: (196,65,77) (77%,25%,30%)
R 196 of 255 = 77%
G 65 of 255 = 25%
B 77 of 255 = 30%
R + G + B ~ 44%. #C4414D is middle color (not dark and not light).
R + G + B =
196 + 65 + 77 = 338 (100%)
R 196 of 338 ~ 57.99%
G 65 of 338 ~ 19.23%
B 77 of 338 ~ 22.78%
#C4414D color CMYK value is (0,67,61,23).
CMYK: (0,67,61,23) C0M67Y61K23 (0%,67%,61%,23%) (0.00/0.67/0.61/0.23)
C4 | 41 | 4D | |
---|---|---|---|
RGB | 196 | 65 | 77 |
HSL | 355° | 52.61% | 51.18% |
HSB/HSV | 355° | 66.84% | 76.86% |
CMYK | 0.00% | 66.84% | 60.71% |
23.14% |
HEX | C4 | 41 | 4D |
Decimal | 196 | 65 | 77 |
Binary | 11000100 | 1000001 | 1001101 |
Octal | 304 | 101 | 115 |
Examples of css and html codes for elements with #C4414D color. Also use rgb(196,65,77) instead hex code.
.myTextColor { color: #C4414D; }
<p style="color:#C4414D">This sample text font color is #C4414D.</p>
This text font color is #C4414D.
.myBgColor { background-color: #C4414D; }
<div style="background-color:#C4414D">Inner text</div>
This div background color is #C4414D.
.myBorderColor { border: 1px solid #C4414D; }
<div style="border:3px solid #C4414D">Div</div>
This div border color is #C4414D.
.myOpacity80 { color: #C4414D; opacity: 0.8; }
<p style="color:#C4414D;opacity:0.8;">80%</p>
Text with #C4414D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C4414D;}
<p style="text-shadow: 3px 3px 1px #C4414D">Text here.</p>
This text has shadow with #C4414D color.
.textShadow {text-shadow: 3px 3px 1px #C4414D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C4414D, 5px 5px 20px red">Text here.</p>
This text has shadow with #C4414D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C4414D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C4414D, Direction=45, Strength=4)">Text</p>
This text has shadow with #C4414D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C4414D; -webkit-box-shadow: 1px 1px 3px 2px #C4414D; box-shadow: 1px 1px 3px 2px #C4414D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C4414D; -webkit-box-shadow: 1px 1px 3px 2px #C4414D; box-shadow:1px 1px 3px 2px #C4414D;">
Div content here</div>
This text has color #C4414D on black background.
This text has color #C4414D on white background.
This text has black color on #C4414D background.
This text has white color on #C4414D background.