HEX: #C374A1
RGB: (195,116,161)
#C374A1 contains mainly red and blue colors. Web safe color of #C374A1 is #CC6699 (or #C69).
#C374A1 color RGB value is (195,116,161).
RGB: (195,116,161) (76%,45%,63%)
R 195 of 255 = 76%
G 116 of 255 = 45%
B 161 of 255 = 63%
R + G + B ~ 61%. #C374A1 is quite light color.
R + G + B =
195 + 116 + 161 = 472 (100%)
R 195 of 472 ~ 41.31%
G 116 of 472 ~ 24.58%
B 161 of 472 ~ 34.11%
#C374A1 color CMYK value is (0,41,17,24).
CMYK: (0,41,17,24) C0M41Y17K24 (0%,41%,17%,24%) (0.00/0.41/0.17/0.24)
C3 | 74 | A1 | |
---|---|---|---|
RGB | 195 | 116 | 161 |
HSL | 326° | 39.70% | 60.98% |
HSB/HSV | 326° | 40.51% | 76.47% |
CMYK | 0.00% | 40.51% | 17.44% |
23.53% |
HEX | C3 | 74 | A1 |
Decimal | 195 | 116 | 161 |
Binary | 11000011 | 1110100 | 10100001 |
Octal | 303 | 164 | 241 |
Examples of css and html codes for elements with #C374A1 color. Also use rgb(195,116,161) instead hex code.
.myTextColor { color: #C374A1; }
<p style="color:#C374A1">This sample text font color is #C374A1.</p>
This text font color is #C374A1.
.myBgColor { background-color: #C374A1; }
<div style="background-color:#C374A1">Inner text</div>
This div background color is #C374A1.
.myBorderColor { border: 1px solid #C374A1; }
<div style="border:3px solid #C374A1">Div</div>
This div border color is #C374A1.
.myOpacity80 { color: #C374A1; opacity: 0.8; }
<p style="color:#C374A1;opacity:0.8;">80%</p>
Text with #C374A1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C374A1;}
<p style="text-shadow: 3px 3px 1px #C374A1">Text here.</p>
This text has shadow with #C374A1 color.
.textShadow {text-shadow: 3px 3px 1px #C374A1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C374A1, 5px 5px 20px red">Text here.</p>
This text has shadow with #C374A1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C374A1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C374A1, Direction=45, Strength=4)">Text</p>
This text has shadow with #C374A1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C374A1; -webkit-box-shadow: 1px 1px 3px 2px #C374A1; box-shadow: 1px 1px 3px 2px #C374A1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C374A1; -webkit-box-shadow: 1px 1px 3px 2px #C374A1; box-shadow:1px 1px 3px 2px #C374A1;">
Div content here</div>
This text has color #C374A1 on black background.
This text has color #C374A1 on white background.
This text has black color on #C374A1 background.
This text has white color on #C374A1 background.