HEX: #C4197C
RGB: (196,25,124)
#C4197C contains mainly red color. Web safe color of #C4197C is #CC0066 (or #C06).
#C4197C color RGB value is (196,25,124).
RGB: (196,25,124) (77%,10%,49%)
R 196 of 255 = 77%
G 25 of 255 = 10%
B 124 of 255 = 49%
R + G + B ~ 45%. #C4197C is middle color (not dark and not light).
R + G + B =
196 + 25 + 124 = 345 (100%)
R 196 of 345 ~ 56.81%
G 25 of 345 ~ 7.25%
B 124 of 345 ~ 35.94%
#C4197C color CMYK value is (0,87,37,23).
CMYK: (0,87,37,23) C0M87Y37K23 (0%,87%,37%,23%) (0.00/0.87/0.37/0.23)
C4 | 19 | 7C | |
---|---|---|---|
RGB | 196 | 25 | 124 |
HSL | 325° | 77.38% | 43.33% |
HSB/HSV | 325° | 87.24% | 76.86% |
CMYK | 0.00% | 87.24% | 36.73% |
23.14% |
HEX | C4 | 19 | 7C |
Decimal | 196 | 25 | 124 |
Binary | 11000100 | 11001 | 1111100 |
Octal | 304 | 31 | 174 |
Examples of css and html codes for elements with #C4197C color. Also use rgb(196,25,124) instead hex code.
.myTextColor { color: #C4197C; }
<p style="color:#C4197C">This sample text font color is #C4197C.</p>
This text font color is #C4197C.
.myBgColor { background-color: #C4197C; }
<div style="background-color:#C4197C">Inner text</div>
This div background color is #C4197C.
.myBorderColor { border: 1px solid #C4197C; }
<div style="border:3px solid #C4197C">Div</div>
This div border color is #C4197C.
.myOpacity80 { color: #C4197C; opacity: 0.8; }
<p style="color:#C4197C;opacity:0.8;">80%</p>
Text with #C4197C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C4197C;}
<p style="text-shadow: 3px 3px 1px #C4197C">Text here.</p>
This text has shadow with #C4197C color.
.textShadow {text-shadow: 3px 3px 1px #C4197C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C4197C, 5px 5px 20px red">Text here.</p>
This text has shadow with #C4197C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C4197C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C4197C, Direction=45, Strength=4)">Text</p>
This text has shadow with #C4197C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C4197C; -webkit-box-shadow: 1px 1px 3px 2px #C4197C; box-shadow: 1px 1px 3px 2px #C4197C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C4197C; -webkit-box-shadow: 1px 1px 3px 2px #C4197C; box-shadow:1px 1px 3px 2px #C4197C;">
Div content here</div>
This text has color #C4197C on black background.
This text has color #C4197C on white background.
This text has black color on #C4197C background.
This text has white color on #C4197C background.