HEX: #C2AACC
RGB: (194,170,204)
#C2AACC contains red, green and blue colors in about the same proportion. Web safe color of #C2AACC is #CC99CC (or #C9C).
#C2AACC color RGB value is (194,170,204).
RGB: (194,170,204) (76%,67%,80%)
R 194 of 255 = 76%
G 170 of 255 = 67%
B 204 of 255 = 80%
R + G + B ~ 74%. #C2AACC is quite light color.
R + G + B =
194 + 170 + 204 = 568 (100%)
R 194 of 568 ~ 34.15%
G 170 of 568 ~ 29.93%
B 204 of 568 ~ 35.92%
#C2AACC color CMYK value is (5,17,0,20).
CMYK: (5,17,0,20) C5M17Y0K20 (5%,17%,0%,20%) (0.05/0.17/0.00/0.20)
C2 | AA | CC | |
---|---|---|---|
RGB | 194 | 170 | 204 |
HSL | 282° | 25.00% | 73.33% |
HSB/HSV | 282° | 16.67% | 80.00% |
CMYK | 4.90% | 16.67% | 0.00% |
20.00% |
HEX | C2 | AA | CC |
Decimal | 194 | 170 | 204 |
Binary | 11000010 | 10101010 | 11001100 |
Octal | 302 | 252 | 314 |
Examples of css and html codes for elements with #C2AACC color. Also use rgb(194,170,204) instead hex code.
.myTextColor { color: #C2AACC; }
<p style="color:#C2AACC">This sample text font color is #C2AACC.</p>
This text font color is #C2AACC.
.myBgColor { background-color: #C2AACC; }
<div style="background-color:#C2AACC">Inner text</div>
This div background color is #C2AACC.
.myBorderColor { border: 1px solid #C2AACC; }
<div style="border:3px solid #C2AACC">Div</div>
This div border color is #C2AACC.
.myOpacity80 { color: #C2AACC; opacity: 0.8; }
<p style="color:#C2AACC;opacity:0.8;">80%</p>
Text with #C2AACC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C2AACC;}
<p style="text-shadow: 3px 3px 1px #C2AACC">Text here.</p>
This text has shadow with #C2AACC color.
.textShadow {text-shadow: 3px 3px 1px #C2AACC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C2AACC, 5px 5px 20px red">Text here.</p>
This text has shadow with #C2AACC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C2AACC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C2AACC, Direction=45, Strength=4)">Text</p>
This text has shadow with #C2AACC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C2AACC; -webkit-box-shadow: 1px 1px 3px 2px #C2AACC; box-shadow: 1px 1px 3px 2px #C2AACC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C2AACC; -webkit-box-shadow: 1px 1px 3px 2px #C2AACC; box-shadow:1px 1px 3px 2px #C2AACC;">
Div content here</div>
This text has color #C2AACC on black background.
This text has color #C2AACC on white background.
This text has black color on #C2AACC background.
This text has white color on #C2AACC background.