HEX: #C76097
RGB: (199,96,151)
#C76097 contains mainly red and blue colors. Web safe color of #C76097 is #CC6699 (or #C69).
#C76097 color RGB value is (199,96,151).
RGB: (199,96,151) (78%,38%,59%)
R 199 of 255 = 78%
G 96 of 255 = 38%
B 151 of 255 = 59%
R + G + B ~ 58%. #C76097 is middle color (not dark and not light).
R + G + B =
199 + 96 + 151 = 446 (100%)
R 199 of 446 ~ 44.62%
G 96 of 446 ~ 21.52%
B 151 of 446 ~ 33.86%
#C76097 color CMYK value is (0,52,24,22).
CMYK: (0,52,24,22) C0M52Y24K22 (0%,52%,24%,22%) (0.00/0.52/0.24/0.22)
C7 | 60 | 97 | |
---|---|---|---|
RGB | 199 | 96 | 151 |
HSL | 328° | 47.91% | 57.84% |
HSB/HSV | 328° | 51.76% | 78.04% |
CMYK | 0.00% | 51.76% | 24.12% |
21.96% |
HEX | C7 | 60 | 97 |
Decimal | 199 | 96 | 151 |
Binary | 11000111 | 1100000 | 10010111 |
Octal | 307 | 140 | 227 |
Examples of css and html codes for elements with #C76097 color. Also use rgb(199,96,151) instead hex code.
.myTextColor { color: #C76097; }
<p style="color:#C76097">This sample text font color is #C76097.</p>
This text font color is #C76097.
.myBgColor { background-color: #C76097; }
<div style="background-color:#C76097">Inner text</div>
This div background color is #C76097.
.myBorderColor { border: 1px solid #C76097; }
<div style="border:3px solid #C76097">Div</div>
This div border color is #C76097.
.myOpacity80 { color: #C76097; opacity: 0.8; }
<p style="color:#C76097;opacity:0.8;">80%</p>
Text with #C76097 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C76097;}
<p style="text-shadow: 3px 3px 1px #C76097">Text here.</p>
This text has shadow with #C76097 color.
.textShadow {text-shadow: 3px 3px 1px #C76097, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C76097, 5px 5px 20px red">Text here.</p>
This text has shadow with #C76097 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C76097, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C76097, Direction=45, Strength=4)">Text</p>
This text has shadow with #C76097 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C76097; -webkit-box-shadow: 1px 1px 3px 2px #C76097; box-shadow: 1px 1px 3px 2px #C76097; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C76097; -webkit-box-shadow: 1px 1px 3px 2px #C76097; box-shadow:1px 1px 3px 2px #C76097;">
Div content here</div>
This text has color #C76097 on black background.
This text has color #C76097 on white background.
This text has black color on #C76097 background.
This text has white color on #C76097 background.