HEX: #CCC7DF
RGB: (204,199,223)
#CCC7DF contains red, green and blue colors in about the same proportion. Web safe color of #CCC7DF is #CCCCCC (or #CCC).
#CCC7DF color RGB value is (204,199,223).
RGB: (204,199,223) (80%,78%,87%)
R 204 of 255 = 80%
G 199 of 255 = 78%
B 223 of 255 = 87%
R + G + B ~ 82%. #CCC7DF is quite light color.
R + G + B =
204 + 199 + 223 = 626 (100%)
R 204 of 626 ~ 32.59%
G 199 of 626 ~ 31.79%
B 223 of 626 ~ 35.62%
#CCC7DF color CMYK value is (9,11,0,13).
CMYK: (9,11,0,13) C9M11Y0K13 (9%,11%,0%,13%) (0.09/0.11/0.00/0.13)
CC | C7 | DF | |
---|---|---|---|
RGB | 204 | 199 | 223 |
HSL | 253° | 27.27% | 82.75% |
HSB/HSV | 253° | 10.76% | 87.45% |
CMYK | 8.52% | 10.76% | 0.00% |
12.55% |
HEX | CC | C7 | DF |
Decimal | 204 | 199 | 223 |
Binary | 11001100 | 11000111 | 11011111 |
Octal | 314 | 307 | 337 |
Examples of css and html codes for elements with #CCC7DF color. Also use rgb(204,199,223) instead hex code.
.myTextColor { color: #CCC7DF; }
<p style="color:#CCC7DF">This sample text font color is #CCC7DF.</p>
This text font color is #CCC7DF.
.myBgColor { background-color: #CCC7DF; }
<div style="background-color:#CCC7DF">Inner text</div>
This div background color is #CCC7DF.
.myBorderColor { border: 1px solid #CCC7DF; }
<div style="border:3px solid #CCC7DF">Div</div>
This div border color is #CCC7DF.
.myOpacity80 { color: #CCC7DF; opacity: 0.8; }
<p style="color:#CCC7DF;opacity:0.8;">80%</p>
Text with #CCC7DF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CCC7DF;}
<p style="text-shadow: 3px 3px 1px #CCC7DF">Text here.</p>
This text has shadow with #CCC7DF color.
.textShadow {text-shadow: 3px 3px 1px #CCC7DF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CCC7DF, 5px 5px 20px red">Text here.</p>
This text has shadow with #CCC7DF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CCC7DF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CCC7DF, Direction=45, Strength=4)">Text</p>
This text has shadow with #CCC7DF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CCC7DF; -webkit-box-shadow: 1px 1px 3px 2px #CCC7DF; box-shadow: 1px 1px 3px 2px #CCC7DF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CCC7DF; -webkit-box-shadow: 1px 1px 3px 2px #CCC7DF; box-shadow:1px 1px 3px 2px #CCC7DF;">
Div content here</div>
This text has color #CCC7DF on black background.
This text has color #CCC7DF on white background.
This text has black color on #CCC7DF background.
This text has white color on #CCC7DF background.