HEX: #C57571
RGB: (197,117,113)
#C57571 contains mainly red color. Web safe color of #C57571 is #CC6666 (or #C66).
#C57571 color RGB value is (197,117,113).
RGB: (197,117,113) (77%,46%,44%)
R 197 of 255 = 77%
G 117 of 255 = 46%
B 113 of 255 = 44%
R + G + B ~ 56%. #C57571 is middle color (not dark and not light).
R + G + B =
197 + 117 + 113 = 427 (100%)
R 197 of 427 ~ 46.14%
G 117 of 427 ~ 27.4%
B 113 of 427 ~ 26.46%
#C57571 color CMYK value is (0,41,43,23).
CMYK: (0,41,43,23) C0M41Y43K23 (0%,41%,43%,23%) (0.00/0.41/0.43/0.23)
C5 | 75 | 71 | |
---|---|---|---|
RGB | 197 | 117 | 113 |
HSL | 3° | 42.00% | 60.78% |
HSB/HSV | 3° | 42.64% | 77.25% |
CMYK | 0.00% | 40.61% | 42.64% |
22.75% |
HEX | C5 | 75 | 71 |
Decimal | 197 | 117 | 113 |
Binary | 11000101 | 1110101 | 1110001 |
Octal | 305 | 165 | 161 |
Examples of css and html codes for elements with #C57571 color. Also use rgb(197,117,113) instead hex code.
.myTextColor { color: #C57571; }
<p style="color:#C57571">This sample text font color is #C57571.</p>
This text font color is #C57571.
.myBgColor { background-color: #C57571; }
<div style="background-color:#C57571">Inner text</div>
This div background color is #C57571.
.myBorderColor { border: 1px solid #C57571; }
<div style="border:3px solid #C57571">Div</div>
This div border color is #C57571.
.myOpacity80 { color: #C57571; opacity: 0.8; }
<p style="color:#C57571;opacity:0.8;">80%</p>
Text with #C57571 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C57571;}
<p style="text-shadow: 3px 3px 1px #C57571">Text here.</p>
This text has shadow with #C57571 color.
.textShadow {text-shadow: 3px 3px 1px #C57571, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C57571, 5px 5px 20px red">Text here.</p>
This text has shadow with #C57571 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C57571, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C57571, Direction=45, Strength=4)">Text</p>
This text has shadow with #C57571 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C57571; -webkit-box-shadow: 1px 1px 3px 2px #C57571; box-shadow: 1px 1px 3px 2px #C57571; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C57571; -webkit-box-shadow: 1px 1px 3px 2px #C57571; box-shadow:1px 1px 3px 2px #C57571;">
Div content here</div>
This text has color #C57571 on black background.
This text has color #C57571 on white background.
This text has black color on #C57571 background.
This text has white color on #C57571 background.