HEX: #C57A52
RGB: (197,122,82)
#C57A52 contains mainly red color. Web safe color of #C57A52 is #CC6666 (or #C66).
#C57A52 color RGB value is (197,122,82).
RGB: (197,122,82) (77%,48%,32%)
R 197 of 255 = 77%
G 122 of 255 = 48%
B 82 of 255 = 32%
R + G + B ~ 52%. #C57A52 is middle color (not dark and not light).
R + G + B =
197 + 122 + 82 = 401 (100%)
R 197 of 401 ~ 49.13%
G 122 of 401 ~ 30.42%
B 82 of 401 ~ 20.45%
#C57A52 color CMYK value is (0,38,58,23).
CMYK: (0,38,58,23) C0M38Y58K23 (0%,38%,58%,23%) (0.00/0.38/0.58/0.23)
C5 | 7A | 52 | |
---|---|---|---|
RGB | 197 | 122 | 82 |
HSL | 21° | 49.78% | 54.71% |
HSB/HSV | 21° | 58.38% | 77.25% |
CMYK | 0.00% | 38.07% | 58.38% |
22.75% |
HEX | C5 | 7A | 52 |
Decimal | 197 | 122 | 82 |
Binary | 11000101 | 1111010 | 1010010 |
Octal | 305 | 172 | 122 |
Examples of css and html codes for elements with #C57A52 color. Also use rgb(197,122,82) instead hex code.
.myTextColor { color: #C57A52; }
<p style="color:#C57A52">This sample text font color is #C57A52.</p>
This text font color is #C57A52.
.myBgColor { background-color: #C57A52; }
<div style="background-color:#C57A52">Inner text</div>
This div background color is #C57A52.
.myBorderColor { border: 1px solid #C57A52; }
<div style="border:3px solid #C57A52">Div</div>
This div border color is #C57A52.
.myOpacity80 { color: #C57A52; opacity: 0.8; }
<p style="color:#C57A52;opacity:0.8;">80%</p>
Text with #C57A52 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C57A52;}
<p style="text-shadow: 3px 3px 1px #C57A52">Text here.</p>
This text has shadow with #C57A52 color.
.textShadow {text-shadow: 3px 3px 1px #C57A52, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C57A52, 5px 5px 20px red">Text here.</p>
This text has shadow with #C57A52 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C57A52, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C57A52, Direction=45, Strength=4)">Text</p>
This text has shadow with #C57A52 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C57A52; -webkit-box-shadow: 1px 1px 3px 2px #C57A52; box-shadow: 1px 1px 3px 2px #C57A52; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C57A52; -webkit-box-shadow: 1px 1px 3px 2px #C57A52; box-shadow:1px 1px 3px 2px #C57A52;">
Div content here</div>
This text has color #C57A52 on black background.
This text has color #C57A52 on white background.
This text has black color on #C57A52 background.
This text has white color on #C57A52 background.