HEX: #C9DBDD
RGB: (201,219,221)
#C9DBDD contains red, green and blue colors in about the same proportion. Web safe color of #C9DBDD is #CCCCCC (or #CCC).
#C9DBDD color RGB value is (201,219,221).
RGB: (201,219,221) (79%,86%,87%)
R 201 of 255 = 79%
G 219 of 255 = 86%
B 221 of 255 = 87%
R + G + B ~ 84%. #C9DBDD is quite light color.
R + G + B =
201 + 219 + 221 = 641 (100%)
R 201 of 641 ~ 31.36%
G 219 of 641 ~ 34.17%
B 221 of 641 ~ 34.48%
#C9DBDD color CMYK value is (9,1,0,13).
CMYK: (9,1,0,13) C9M1Y0K13 (9%,1%,0%,13%) (0.09/0.01/0.00/0.13)
C9 | DB | DD | |
---|---|---|---|
RGB | 201 | 219 | 221 |
HSL | 186° | 22.73% | 82.75% |
HSB/HSV | 186° | 9.05% | 86.67% |
CMYK | 9.05% | 0.90% | 0.00% |
13.33% |
HEX | C9 | DB | DD |
Decimal | 201 | 219 | 221 |
Binary | 11001001 | 11011011 | 11011101 |
Octal | 311 | 333 | 335 |
Examples of css and html codes for elements with #C9DBDD color. Also use rgb(201,219,221) instead hex code.
.myTextColor { color: #C9DBDD; }
<p style="color:#C9DBDD">This sample text font color is #C9DBDD.</p>
This text font color is #C9DBDD.
.myBgColor { background-color: #C9DBDD; }
<div style="background-color:#C9DBDD">Inner text</div>
This div background color is #C9DBDD.
.myBorderColor { border: 1px solid #C9DBDD; }
<div style="border:3px solid #C9DBDD">Div</div>
This div border color is #C9DBDD.
.myOpacity80 { color: #C9DBDD; opacity: 0.8; }
<p style="color:#C9DBDD;opacity:0.8;">80%</p>
Text with #C9DBDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C9DBDD;}
<p style="text-shadow: 3px 3px 1px #C9DBDD">Text here.</p>
This text has shadow with #C9DBDD color.
.textShadow {text-shadow: 3px 3px 1px #C9DBDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C9DBDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #C9DBDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C9DBDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C9DBDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #C9DBDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C9DBDD; -webkit-box-shadow: 1px 1px 3px 2px #C9DBDD; box-shadow: 1px 1px 3px 2px #C9DBDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C9DBDD; -webkit-box-shadow: 1px 1px 3px 2px #C9DBDD; box-shadow:1px 1px 3px 2px #C9DBDD;">
Div content here</div>
This text has color #C9DBDD on black background.
This text has color #C9DBDD on white background.
This text has black color on #C9DBDD background.
This text has white color on #C9DBDD background.