HEX: #C76570
RGB: (199,101,112)
#C76570 contains mainly red color. Web safe color of #C76570 is #CC6666 (or #C66).
#C76570 color RGB value is (199,101,112).
RGB: (199,101,112) (78%,40%,44%)
R 199 of 255 = 78%
G 101 of 255 = 40%
B 112 of 255 = 44%
R + G + B ~ 54%. #C76570 is middle color (not dark and not light).
R + G + B =
199 + 101 + 112 = 412 (100%)
R 199 of 412 ~ 48.3%
G 101 of 412 ~ 24.51%
B 112 of 412 ~ 27.18%
#C76570 color CMYK value is (0,49,44,22).
CMYK: (0,49,44,22) C0M49Y44K22 (0%,49%,44%,22%) (0.00/0.49/0.44/0.22)
C7 | 65 | 70 | |
---|---|---|---|
RGB | 199 | 101 | 112 |
HSL | 353° | 46.67% | 58.82% |
HSB/HSV | 353° | 49.25% | 78.04% |
CMYK | 0.00% | 49.25% | 43.72% |
21.96% |
HEX | C7 | 65 | 70 |
Decimal | 199 | 101 | 112 |
Binary | 11000111 | 1100101 | 1110000 |
Octal | 307 | 145 | 160 |
Examples of css and html codes for elements with #C76570 color. Also use rgb(199,101,112) instead hex code.
.myTextColor { color: #C76570; }
<p style="color:#C76570">This sample text font color is #C76570.</p>
This text font color is #C76570.
.myBgColor { background-color: #C76570; }
<div style="background-color:#C76570">Inner text</div>
This div background color is #C76570.
.myBorderColor { border: 1px solid #C76570; }
<div style="border:3px solid #C76570">Div</div>
This div border color is #C76570.
.myOpacity80 { color: #C76570; opacity: 0.8; }
<p style="color:#C76570;opacity:0.8;">80%</p>
Text with #C76570 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C76570;}
<p style="text-shadow: 3px 3px 1px #C76570">Text here.</p>
This text has shadow with #C76570 color.
.textShadow {text-shadow: 3px 3px 1px #C76570, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C76570, 5px 5px 20px red">Text here.</p>
This text has shadow with #C76570 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C76570, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C76570, Direction=45, Strength=4)">Text</p>
This text has shadow with #C76570 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C76570; -webkit-box-shadow: 1px 1px 3px 2px #C76570; box-shadow: 1px 1px 3px 2px #C76570; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C76570; -webkit-box-shadow: 1px 1px 3px 2px #C76570; box-shadow:1px 1px 3px 2px #C76570;">
Div content here</div>
This text has color #C76570 on black background.
This text has color #C76570 on white background.
This text has black color on #C76570 background.
This text has white color on #C76570 background.