HEX: #C966A1
RGB: (201,102,161)
#C966A1 contains mainly red and blue colors. Web safe color of #C966A1 is #CC6699 (or #C69).
#C966A1 color RGB value is (201,102,161).
RGB: (201,102,161) (79%,40%,63%)
R 201 of 255 = 79%
G 102 of 255 = 40%
B 161 of 255 = 63%
R + G + B ~ 61%. #C966A1 is quite light color.
R + G + B =
201 + 102 + 161 = 464 (100%)
R 201 of 464 ~ 43.32%
G 102 of 464 ~ 21.98%
B 161 of 464 ~ 34.7%
#C966A1 color CMYK value is (0,49,20,21).
CMYK: (0,49,20,21) C0M49Y20K21 (0%,49%,20%,21%) (0.00/0.49/0.20/0.21)
C9 | 66 | A1 | |
---|---|---|---|
RGB | 201 | 102 | 161 |
HSL | 324° | 47.83% | 59.41% |
HSB/HSV | 324° | 49.25% | 78.82% |
CMYK | 0.00% | 49.25% | 19.90% |
21.18% |
HEX | C9 | 66 | A1 |
Decimal | 201 | 102 | 161 |
Binary | 11001001 | 1100110 | 10100001 |
Octal | 311 | 146 | 241 |
Examples of css and html codes for elements with #C966A1 color. Also use rgb(201,102,161) instead hex code.
.myTextColor { color: #C966A1; }
<p style="color:#C966A1">This sample text font color is #C966A1.</p>
This text font color is #C966A1.
.myBgColor { background-color: #C966A1; }
<div style="background-color:#C966A1">Inner text</div>
This div background color is #C966A1.
.myBorderColor { border: 1px solid #C966A1; }
<div style="border:3px solid #C966A1">Div</div>
This div border color is #C966A1.
.myOpacity80 { color: #C966A1; opacity: 0.8; }
<p style="color:#C966A1;opacity:0.8;">80%</p>
Text with #C966A1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C966A1;}
<p style="text-shadow: 3px 3px 1px #C966A1">Text here.</p>
This text has shadow with #C966A1 color.
.textShadow {text-shadow: 3px 3px 1px #C966A1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C966A1, 5px 5px 20px red">Text here.</p>
This text has shadow with #C966A1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C966A1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C966A1, Direction=45, Strength=4)">Text</p>
This text has shadow with #C966A1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C966A1; -webkit-box-shadow: 1px 1px 3px 2px #C966A1; box-shadow: 1px 1px 3px 2px #C966A1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C966A1; -webkit-box-shadow: 1px 1px 3px 2px #C966A1; box-shadow:1px 1px 3px 2px #C966A1;">
Div content here</div>
This text has color #C966A1 on black background.
This text has color #C966A1 on white background.
This text has black color on #C966A1 background.
This text has white color on #C966A1 background.