HEX: #C76475
RGB: (199,100,117)
#C76475 contains mainly red color. Web safe color of #C76475 is #CC6666 (or #C66).
#C76475 color RGB value is (199,100,117).
RGB: (199,100,117) (78%,39%,46%)
R 199 of 255 = 78%
G 100 of 255 = 39%
B 117 of 255 = 46%
R + G + B ~ 54%. #C76475 is middle color (not dark and not light).
R + G + B =
199 + 100 + 117 = 416 (100%)
R 199 of 416 ~ 47.84%
G 100 of 416 ~ 24.04%
B 117 of 416 ~ 28.13%
#C76475 color CMYK value is (0,50,41,22).
CMYK: (0,50,41,22) C0M50Y41K22 (0%,50%,41%,22%) (0.00/0.50/0.41/0.22)
C7 | 64 | 75 | |
---|---|---|---|
RGB | 199 | 100 | 117 |
HSL | 350° | 46.92% | 58.63% |
HSB/HSV | 350° | 49.75% | 78.04% |
CMYK | 0.00% | 49.75% | 41.21% |
21.96% |
HEX | C7 | 64 | 75 |
Decimal | 199 | 100 | 117 |
Binary | 11000111 | 1100100 | 1110101 |
Octal | 307 | 144 | 165 |
Examples of css and html codes for elements with #C76475 color. Also use rgb(199,100,117) instead hex code.
.myTextColor { color: #C76475; }
<p style="color:#C76475">This sample text font color is #C76475.</p>
This text font color is #C76475.
.myBgColor { background-color: #C76475; }
<div style="background-color:#C76475">Inner text</div>
This div background color is #C76475.
.myBorderColor { border: 1px solid #C76475; }
<div style="border:3px solid #C76475">Div</div>
This div border color is #C76475.
.myOpacity80 { color: #C76475; opacity: 0.8; }
<p style="color:#C76475;opacity:0.8;">80%</p>
Text with #C76475 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C76475;}
<p style="text-shadow: 3px 3px 1px #C76475">Text here.</p>
This text has shadow with #C76475 color.
.textShadow {text-shadow: 3px 3px 1px #C76475, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C76475, 5px 5px 20px red">Text here.</p>
This text has shadow with #C76475 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C76475, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C76475, Direction=45, Strength=4)">Text</p>
This text has shadow with #C76475 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C76475; -webkit-box-shadow: 1px 1px 3px 2px #C76475; box-shadow: 1px 1px 3px 2px #C76475; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C76475; -webkit-box-shadow: 1px 1px 3px 2px #C76475; box-shadow:1px 1px 3px 2px #C76475;">
Div content here</div>
This text has color #C76475 on black background.
This text has color #C76475 on white background.
This text has black color on #C76475 background.
This text has white color on #C76475 background.