HEX: #C9CCDE
RGB: (201,204,222)
#C9CCDE contains red, green and blue colors in about the same proportion. Web safe color of #C9CCDE is #CCCCCC (or #CCC).
#C9CCDE color RGB value is (201,204,222).
RGB: (201,204,222) (79%,80%,87%)
R 201 of 255 = 79%
G 204 of 255 = 80%
B 222 of 255 = 87%
R + G + B ~ 82%. #C9CCDE is quite light color.
R + G + B =
201 + 204 + 222 = 627 (100%)
R 201 of 627 ~ 32.06%
G 204 of 627 ~ 32.54%
B 222 of 627 ~ 35.41%
#C9CCDE color CMYK value is (9,8,0,13).
CMYK: (9,8,0,13) C9M8Y0K13 (9%,8%,0%,13%) (0.09/0.08/0.00/0.13)
C9 | CC | DE | |
---|---|---|---|
RGB | 201 | 204 | 222 |
HSL | 231° | 24.14% | 82.94% |
HSB/HSV | 231° | 9.46% | 87.06% |
CMYK | 9.46% | 8.11% | 0.00% |
12.94% |
HEX | C9 | CC | DE |
Decimal | 201 | 204 | 222 |
Binary | 11001001 | 11001100 | 11011110 |
Octal | 311 | 314 | 336 |
Examples of css and html codes for elements with #C9CCDE color. Also use rgb(201,204,222) instead hex code.
.myTextColor { color: #C9CCDE; }
<p style="color:#C9CCDE">This sample text font color is #C9CCDE.</p>
This text font color is #C9CCDE.
.myBgColor { background-color: #C9CCDE; }
<div style="background-color:#C9CCDE">Inner text</div>
This div background color is #C9CCDE.
.myBorderColor { border: 1px solid #C9CCDE; }
<div style="border:3px solid #C9CCDE">Div</div>
This div border color is #C9CCDE.
.myOpacity80 { color: #C9CCDE; opacity: 0.8; }
<p style="color:#C9CCDE;opacity:0.8;">80%</p>
Text with #C9CCDE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C9CCDE;}
<p style="text-shadow: 3px 3px 1px #C9CCDE">Text here.</p>
This text has shadow with #C9CCDE color.
.textShadow {text-shadow: 3px 3px 1px #C9CCDE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C9CCDE, 5px 5px 20px red">Text here.</p>
This text has shadow with #C9CCDE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C9CCDE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C9CCDE, Direction=45, Strength=4)">Text</p>
This text has shadow with #C9CCDE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C9CCDE; -webkit-box-shadow: 1px 1px 3px 2px #C9CCDE; box-shadow: 1px 1px 3px 2px #C9CCDE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C9CCDE; -webkit-box-shadow: 1px 1px 3px 2px #C9CCDE; box-shadow:1px 1px 3px 2px #C9CCDE;">
Div content here</div>
This text has color #C9CCDE on black background.
This text has color #C9CCDE on white background.
This text has black color on #C9CCDE background.
This text has white color on #C9CCDE background.