HEX: #CCA5AD
RGB: (204,165,173)
#CCA5AD contains red, green and blue colors in about the same proportion. Web safe color of #CCA5AD is #CC9999 (or #C99).
#CCA5AD color RGB value is (204,165,173).
RGB: (204,165,173) (80%,65%,68%)
R 204 of 255 = 80%
G 165 of 255 = 65%
B 173 of 255 = 68%
R + G + B ~ 71%. #CCA5AD is quite light color.
R + G + B =
204 + 165 + 173 = 542 (100%)
R 204 of 542 ~ 37.64%
G 165 of 542 ~ 30.44%
B 173 of 542 ~ 31.92%
#CCA5AD color CMYK value is (0,19,15,20).
CMYK: (0,19,15,20) C0M19Y15K20 (0%,19%,15%,20%) (0.00/0.19/0.15/0.20)
CC | A5 | AD | |
---|---|---|---|
RGB | 204 | 165 | 173 |
HSL | 348° | 27.66% | 72.35% |
HSB/HSV | 348° | 19.12% | 80.00% |
CMYK | 0.00% | 19.12% | 15.20% |
20.00% |
HEX | CC | A5 | AD |
Decimal | 204 | 165 | 173 |
Binary | 11001100 | 10100101 | 10101101 |
Octal | 314 | 245 | 255 |
Examples of css and html codes for elements with #CCA5AD color. Also use rgb(204,165,173) instead hex code.
.myTextColor { color: #CCA5AD; }
<p style="color:#CCA5AD">This sample text font color is #CCA5AD.</p>
This text font color is #CCA5AD.
.myBgColor { background-color: #CCA5AD; }
<div style="background-color:#CCA5AD">Inner text</div>
This div background color is #CCA5AD.
.myBorderColor { border: 1px solid #CCA5AD; }
<div style="border:3px solid #CCA5AD">Div</div>
This div border color is #CCA5AD.
.myOpacity80 { color: #CCA5AD; opacity: 0.8; }
<p style="color:#CCA5AD;opacity:0.8;">80%</p>
Text with #CCA5AD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CCA5AD;}
<p style="text-shadow: 3px 3px 1px #CCA5AD">Text here.</p>
This text has shadow with #CCA5AD color.
.textShadow {text-shadow: 3px 3px 1px #CCA5AD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CCA5AD, 5px 5px 20px red">Text here.</p>
This text has shadow with #CCA5AD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CCA5AD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CCA5AD, Direction=45, Strength=4)">Text</p>
This text has shadow with #CCA5AD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CCA5AD; -webkit-box-shadow: 1px 1px 3px 2px #CCA5AD; box-shadow: 1px 1px 3px 2px #CCA5AD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CCA5AD; -webkit-box-shadow: 1px 1px 3px 2px #CCA5AD; box-shadow:1px 1px 3px 2px #CCA5AD;">
Div content here</div>
This text has color #CCA5AD on black background.
This text has color #CCA5AD on white background.
This text has black color on #CCA5AD background.
This text has white color on #CCA5AD background.