HEX: #C766C1
RGB: (199,102,193)
#C766C1 contains mainly red and blue colors. Web safe color of #C766C1 is #CC66CC (or #C6C).
#C766C1 color RGB value is (199,102,193).
RGB: (199,102,193) (78%,40%,76%)
R 199 of 255 = 78%
G 102 of 255 = 40%
B 193 of 255 = 76%
R + G + B ~ 65%. #C766C1 is quite light color.
R + G + B =
199 + 102 + 193 = 494 (100%)
R 199 of 494 ~ 40.28%
G 102 of 494 ~ 20.65%
B 193 of 494 ~ 39.07%
#C766C1 color CMYK value is (0,49,3,22).
CMYK: (0,49,3,22) C0M49Y3K22 (0%,49%,3%,22%) (0.00/0.49/0.03/0.22)
C7 | 66 | C1 | |
---|---|---|---|
RGB | 199 | 102 | 193 |
HSL | 304° | 46.41% | 59.02% |
HSB/HSV | 304° | 48.74% | 78.04% |
CMYK | 0.00% | 48.74% | 3.02% |
21.96% |
HEX | C7 | 66 | C1 |
Decimal | 199 | 102 | 193 |
Binary | 11000111 | 1100110 | 11000001 |
Octal | 307 | 146 | 301 |
Examples of css and html codes for elements with #C766C1 color. Also use rgb(199,102,193) instead hex code.
.myTextColor { color: #C766C1; }
<p style="color:#C766C1">This sample text font color is #C766C1.</p>
This text font color is #C766C1.
.myBgColor { background-color: #C766C1; }
<div style="background-color:#C766C1">Inner text</div>
This div background color is #C766C1.
.myBorderColor { border: 1px solid #C766C1; }
<div style="border:3px solid #C766C1">Div</div>
This div border color is #C766C1.
.myOpacity80 { color: #C766C1; opacity: 0.8; }
<p style="color:#C766C1;opacity:0.8;">80%</p>
Text with #C766C1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C766C1;}
<p style="text-shadow: 3px 3px 1px #C766C1">Text here.</p>
This text has shadow with #C766C1 color.
.textShadow {text-shadow: 3px 3px 1px #C766C1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C766C1, 5px 5px 20px red">Text here.</p>
This text has shadow with #C766C1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C766C1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C766C1, Direction=45, Strength=4)">Text</p>
This text has shadow with #C766C1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C766C1; -webkit-box-shadow: 1px 1px 3px 2px #C766C1; box-shadow: 1px 1px 3px 2px #C766C1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C766C1; -webkit-box-shadow: 1px 1px 3px 2px #C766C1; box-shadow:1px 1px 3px 2px #C766C1;">
Div content here</div>
This text has color #C766C1 on black background.
This text has color #C766C1 on white background.
This text has black color on #C766C1 background.
This text has white color on #C766C1 background.