HEX: #C9A3CD
RGB: (201,163,205)
#C9A3CD contains red, green and blue colors in about the same proportion. Web safe color of #C9A3CD is #CC99CC (or #C9C).
#C9A3CD color RGB value is (201,163,205).
RGB: (201,163,205) (79%,64%,80%)
R 201 of 255 = 79%
G 163 of 255 = 64%
B 205 of 255 = 80%
R + G + B ~ 74%. #C9A3CD is quite light color.
R + G + B =
201 + 163 + 205 = 569 (100%)
R 201 of 569 ~ 35.33%
G 163 of 569 ~ 28.65%
B 205 of 569 ~ 36.03%
#C9A3CD color CMYK value is (2,20,0,20).
CMYK: (2,20,0,20) C2M20Y0K20 (2%,20%,0%,20%) (0.02/0.20/0.00/0.20)
C9 | A3 | CD | |
---|---|---|---|
RGB | 201 | 163 | 205 |
HSL | 294° | 29.58% | 72.16% |
HSB/HSV | 294° | 20.49% | 80.39% |
CMYK | 1.95% | 20.49% | 0.00% |
19.61% |
HEX | C9 | A3 | CD |
Decimal | 201 | 163 | 205 |
Binary | 11001001 | 10100011 | 11001101 |
Octal | 311 | 243 | 315 |
Examples of css and html codes for elements with #C9A3CD color. Also use rgb(201,163,205) instead hex code.
.myTextColor { color: #C9A3CD; }
<p style="color:#C9A3CD">This sample text font color is #C9A3CD.</p>
This text font color is #C9A3CD.
.myBgColor { background-color: #C9A3CD; }
<div style="background-color:#C9A3CD">Inner text</div>
This div background color is #C9A3CD.
.myBorderColor { border: 1px solid #C9A3CD; }
<div style="border:3px solid #C9A3CD">Div</div>
This div border color is #C9A3CD.
.myOpacity80 { color: #C9A3CD; opacity: 0.8; }
<p style="color:#C9A3CD;opacity:0.8;">80%</p>
Text with #C9A3CD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C9A3CD;}
<p style="text-shadow: 3px 3px 1px #C9A3CD">Text here.</p>
This text has shadow with #C9A3CD color.
.textShadow {text-shadow: 3px 3px 1px #C9A3CD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C9A3CD, 5px 5px 20px red">Text here.</p>
This text has shadow with #C9A3CD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C9A3CD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C9A3CD, Direction=45, Strength=4)">Text</p>
This text has shadow with #C9A3CD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C9A3CD; -webkit-box-shadow: 1px 1px 3px 2px #C9A3CD; box-shadow: 1px 1px 3px 2px #C9A3CD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C9A3CD; -webkit-box-shadow: 1px 1px 3px 2px #C9A3CD; box-shadow:1px 1px 3px 2px #C9A3CD;">
Div content here</div>
This text has color #C9A3CD on black background.
This text has color #C9A3CD on white background.
This text has black color on #C9A3CD background.
This text has white color on #C9A3CD background.