HEX: #CCA3BC
RGB: (204,163,188)
#CCA3BC contains red, green and blue colors in about the same proportion. Web safe color of #CCA3BC is #CC99CC (or #C9C).
#CCA3BC color RGB value is (204,163,188).
RGB: (204,163,188) (80%,64%,74%)
R 204 of 255 = 80%
G 163 of 255 = 64%
B 188 of 255 = 74%
R + G + B ~ 73%. #CCA3BC is quite light color.
R + G + B =
204 + 163 + 188 = 555 (100%)
R 204 of 555 ~ 36.76%
G 163 of 555 ~ 29.37%
B 188 of 555 ~ 33.87%
#CCA3BC color CMYK value is (0,20,8,20).
CMYK: (0,20,8,20) C0M20Y8K20 (0%,20%,8%,20%) (0.00/0.20/0.08/0.20)
CC | A3 | BC | |
---|---|---|---|
RGB | 204 | 163 | 188 |
HSL | 323° | 28.67% | 71.96% |
HSB/HSV | 323° | 20.10% | 80.00% |
CMYK | 0.00% | 20.10% | 7.84% |
20.00% |
HEX | CC | A3 | BC |
Decimal | 204 | 163 | 188 |
Binary | 11001100 | 10100011 | 10111100 |
Octal | 314 | 243 | 274 |
Examples of css and html codes for elements with #CCA3BC color. Also use rgb(204,163,188) instead hex code.
.myTextColor { color: #CCA3BC; }
<p style="color:#CCA3BC">This sample text font color is #CCA3BC.</p>
This text font color is #CCA3BC.
.myBgColor { background-color: #CCA3BC; }
<div style="background-color:#CCA3BC">Inner text</div>
This div background color is #CCA3BC.
.myBorderColor { border: 1px solid #CCA3BC; }
<div style="border:3px solid #CCA3BC">Div</div>
This div border color is #CCA3BC.
.myOpacity80 { color: #CCA3BC; opacity: 0.8; }
<p style="color:#CCA3BC;opacity:0.8;">80%</p>
Text with #CCA3BC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CCA3BC;}
<p style="text-shadow: 3px 3px 1px #CCA3BC">Text here.</p>
This text has shadow with #CCA3BC color.
.textShadow {text-shadow: 3px 3px 1px #CCA3BC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CCA3BC, 5px 5px 20px red">Text here.</p>
This text has shadow with #CCA3BC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CCA3BC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CCA3BC, Direction=45, Strength=4)">Text</p>
This text has shadow with #CCA3BC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CCA3BC; -webkit-box-shadow: 1px 1px 3px 2px #CCA3BC; box-shadow: 1px 1px 3px 2px #CCA3BC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CCA3BC; -webkit-box-shadow: 1px 1px 3px 2px #CCA3BC; box-shadow:1px 1px 3px 2px #CCA3BC;">
Div content here</div>
This text has color #CCA3BC on black background.
This text has color #CCA3BC on white background.
This text has black color on #CCA3BC background.
This text has white color on #CCA3BC background.