HEX: #C666AE
RGB: (198,102,174)
#C666AE contains mainly red and blue colors. Web safe color of #C666AE is #CC6699 (or #C69).
#C666AE color RGB value is (198,102,174).
RGB: (198,102,174) (78%,40%,68%)
R 198 of 255 = 78%
G 102 of 255 = 40%
B 174 of 255 = 68%
R + G + B ~ 62%. #C666AE is quite light color.
R + G + B =
198 + 102 + 174 = 474 (100%)
R 198 of 474 ~ 41.77%
G 102 of 474 ~ 21.52%
B 174 of 474 ~ 36.71%
#C666AE color CMYK value is (0,48,12,22).
CMYK: (0,48,12,22) C0M48Y12K22 (0%,48%,12%,22%) (0.00/0.48/0.12/0.22)
C6 | 66 | AE | |
---|---|---|---|
RGB | 198 | 102 | 174 |
HSL | 315° | 45.71% | 58.82% |
HSB/HSV | 315° | 48.48% | 77.65% |
CMYK | 0.00% | 48.48% | 12.12% |
22.35% |
HEX | C6 | 66 | AE |
Decimal | 198 | 102 | 174 |
Binary | 11000110 | 1100110 | 10101110 |
Octal | 306 | 146 | 256 |
Examples of css and html codes for elements with #C666AE color. Also use rgb(198,102,174) instead hex code.
.myTextColor { color: #C666AE; }
<p style="color:#C666AE">This sample text font color is #C666AE.</p>
This text font color is #C666AE.
.myBgColor { background-color: #C666AE; }
<div style="background-color:#C666AE">Inner text</div>
This div background color is #C666AE.
.myBorderColor { border: 1px solid #C666AE; }
<div style="border:3px solid #C666AE">Div</div>
This div border color is #C666AE.
.myOpacity80 { color: #C666AE; opacity: 0.8; }
<p style="color:#C666AE;opacity:0.8;">80%</p>
Text with #C666AE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C666AE;}
<p style="text-shadow: 3px 3px 1px #C666AE">Text here.</p>
This text has shadow with #C666AE color.
.textShadow {text-shadow: 3px 3px 1px #C666AE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C666AE, 5px 5px 20px red">Text here.</p>
This text has shadow with #C666AE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C666AE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C666AE, Direction=45, Strength=4)">Text</p>
This text has shadow with #C666AE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C666AE; -webkit-box-shadow: 1px 1px 3px 2px #C666AE; box-shadow: 1px 1px 3px 2px #C666AE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C666AE; -webkit-box-shadow: 1px 1px 3px 2px #C666AE; box-shadow:1px 1px 3px 2px #C666AE;">
Div content here</div>
This text has color #C666AE on black background.
This text has color #C666AE on white background.
This text has black color on #C666AE background.
This text has white color on #C666AE background.