HEX: #C761AA
RGB: (199,97,170)
#C761AA contains mainly red and blue colors. Web safe color of #C761AA is #CC6699 (or #C69).
#C761AA color RGB value is (199,97,170).
RGB: (199,97,170) (78%,38%,67%)
R 199 of 255 = 78%
G 97 of 255 = 38%
B 170 of 255 = 67%
R + G + B ~ 61%. #C761AA is quite light color.
R + G + B =
199 + 97 + 170 = 466 (100%)
R 199 of 466 ~ 42.7%
G 97 of 466 ~ 20.82%
B 170 of 466 ~ 36.48%
#C761AA color CMYK value is (0,51,15,22).
CMYK: (0,51,15,22) C0M51Y15K22 (0%,51%,15%,22%) (0.00/0.51/0.15/0.22)
C7 | 61 | AA | |
---|---|---|---|
RGB | 199 | 97 | 170 |
HSL | 317° | 47.66% | 58.04% |
HSB/HSV | 317° | 51.26% | 78.04% |
CMYK | 0.00% | 51.26% | 14.57% |
21.96% |
HEX | C7 | 61 | AA |
Decimal | 199 | 97 | 170 |
Binary | 11000111 | 1100001 | 10101010 |
Octal | 307 | 141 | 252 |
Examples of css and html codes for elements with #C761AA color. Also use rgb(199,97,170) instead hex code.
.myTextColor { color: #C761AA; }
<p style="color:#C761AA">This sample text font color is #C761AA.</p>
This text font color is #C761AA.
.myBgColor { background-color: #C761AA; }
<div style="background-color:#C761AA">Inner text</div>
This div background color is #C761AA.
.myBorderColor { border: 1px solid #C761AA; }
<div style="border:3px solid #C761AA">Div</div>
This div border color is #C761AA.
.myOpacity80 { color: #C761AA; opacity: 0.8; }
<p style="color:#C761AA;opacity:0.8;">80%</p>
Text with #C761AA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C761AA;}
<p style="text-shadow: 3px 3px 1px #C761AA">Text here.</p>
This text has shadow with #C761AA color.
.textShadow {text-shadow: 3px 3px 1px #C761AA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C761AA, 5px 5px 20px red">Text here.</p>
This text has shadow with #C761AA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C761AA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C761AA, Direction=45, Strength=4)">Text</p>
This text has shadow with #C761AA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C761AA; -webkit-box-shadow: 1px 1px 3px 2px #C761AA; box-shadow: 1px 1px 3px 2px #C761AA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C761AA; -webkit-box-shadow: 1px 1px 3px 2px #C761AA; box-shadow:1px 1px 3px 2px #C761AA;">
Div content here</div>
This text has color #C761AA on black background.
This text has color #C761AA on white background.
This text has black color on #C761AA background.
This text has white color on #C761AA background.