HEX: #CCC4DA
RGB: (204,196,218)
#CCC4DA contains red, green and blue colors in about the same proportion. Web safe color of #CCC4DA is #CCCCCC (or #CCC).
#CCC4DA color RGB value is (204,196,218).
RGB: (204,196,218) (80%,77%,85%)
R 204 of 255 = 80%
G 196 of 255 = 77%
B 218 of 255 = 85%
R + G + B ~ 81%. #CCC4DA is quite light color.
R + G + B =
204 + 196 + 218 = 618 (100%)
R 204 of 618 ~ 33.01%
G 196 of 618 ~ 31.72%
B 218 of 618 ~ 35.28%
#CCC4DA color CMYK value is (6,10,0,15).
CMYK: (6,10,0,15) C6M10Y0K15 (6%,10%,0%,15%) (0.06/0.10/0.00/0.15)
CC | C4 | DA | |
---|---|---|---|
RGB | 204 | 196 | 218 |
HSL | 262° | 22.92% | 81.18% |
HSB/HSV | 262° | 10.09% | 85.49% |
CMYK | 6.42% | 10.09% | 0.00% |
14.51% |
HEX | CC | C4 | DA |
Decimal | 204 | 196 | 218 |
Binary | 11001100 | 11000100 | 11011010 |
Octal | 314 | 304 | 332 |
Examples of css and html codes for elements with #CCC4DA color. Also use rgb(204,196,218) instead hex code.
.myTextColor { color: #CCC4DA; }
<p style="color:#CCC4DA">This sample text font color is #CCC4DA.</p>
This text font color is #CCC4DA.
.myBgColor { background-color: #CCC4DA; }
<div style="background-color:#CCC4DA">Inner text</div>
This div background color is #CCC4DA.
.myBorderColor { border: 1px solid #CCC4DA; }
<div style="border:3px solid #CCC4DA">Div</div>
This div border color is #CCC4DA.
.myOpacity80 { color: #CCC4DA; opacity: 0.8; }
<p style="color:#CCC4DA;opacity:0.8;">80%</p>
Text with #CCC4DA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CCC4DA;}
<p style="text-shadow: 3px 3px 1px #CCC4DA">Text here.</p>
This text has shadow with #CCC4DA color.
.textShadow {text-shadow: 3px 3px 1px #CCC4DA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CCC4DA, 5px 5px 20px red">Text here.</p>
This text has shadow with #CCC4DA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CCC4DA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CCC4DA, Direction=45, Strength=4)">Text</p>
This text has shadow with #CCC4DA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CCC4DA; -webkit-box-shadow: 1px 1px 3px 2px #CCC4DA; box-shadow: 1px 1px 3px 2px #CCC4DA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CCC4DA; -webkit-box-shadow: 1px 1px 3px 2px #CCC4DA; box-shadow:1px 1px 3px 2px #CCC4DA;">
Div content here</div>
This text has color #CCC4DA on black background.
This text has color #CCC4DA on white background.
This text has black color on #CCC4DA background.
This text has white color on #CCC4DA background.