HEX: #C57587
RGB: (197,117,135)
#C57587 contains mainly red color. Web safe color of #C57587 is #CC6699 (or #C69).
#C57587 color RGB value is (197,117,135).
RGB: (197,117,135) (77%,46%,53%)
R 197 of 255 = 77%
G 117 of 255 = 46%
B 135 of 255 = 53%
R + G + B ~ 59%. #C57587 is middle color (not dark and not light).
R + G + B =
197 + 117 + 135 = 449 (100%)
R 197 of 449 ~ 43.88%
G 117 of 449 ~ 26.06%
B 135 of 449 ~ 30.07%
#C57587 color CMYK value is (0,41,31,23).
CMYK: (0,41,31,23) C0M41Y31K23 (0%,41%,31%,23%) (0.00/0.41/0.31/0.23)
C5 | 75 | 87 | |
---|---|---|---|
RGB | 197 | 117 | 135 |
HSL | 347° | 40.82% | 61.57% |
HSB/HSV | 347° | 40.61% | 77.25% |
CMYK | 0.00% | 40.61% | 31.47% |
22.75% |
HEX | C5 | 75 | 87 |
Decimal | 197 | 117 | 135 |
Binary | 11000101 | 1110101 | 10000111 |
Octal | 305 | 165 | 207 |
Examples of css and html codes for elements with #C57587 color. Also use rgb(197,117,135) instead hex code.
.myTextColor { color: #C57587; }
<p style="color:#C57587">This sample text font color is #C57587.</p>
This text font color is #C57587.
.myBgColor { background-color: #C57587; }
<div style="background-color:#C57587">Inner text</div>
This div background color is #C57587.
.myBorderColor { border: 1px solid #C57587; }
<div style="border:3px solid #C57587">Div</div>
This div border color is #C57587.
.myOpacity80 { color: #C57587; opacity: 0.8; }
<p style="color:#C57587;opacity:0.8;">80%</p>
Text with #C57587 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C57587;}
<p style="text-shadow: 3px 3px 1px #C57587">Text here.</p>
This text has shadow with #C57587 color.
.textShadow {text-shadow: 3px 3px 1px #C57587, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C57587, 5px 5px 20px red">Text here.</p>
This text has shadow with #C57587 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C57587, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C57587, Direction=45, Strength=4)">Text</p>
This text has shadow with #C57587 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C57587; -webkit-box-shadow: 1px 1px 3px 2px #C57587; box-shadow: 1px 1px 3px 2px #C57587; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C57587; -webkit-box-shadow: 1px 1px 3px 2px #C57587; box-shadow:1px 1px 3px 2px #C57587;">
Div content here</div>
This text has color #C57587 on black background.
This text has color #C57587 on white background.
This text has black color on #C57587 background.
This text has white color on #C57587 background.