HEX: #C9CBDB
RGB: (201,203,219)
#C9CBDB contains red, green and blue colors in about the same proportion. Web safe color of #C9CBDB is #CCCCCC (or #CCC).
#C9CBDB color RGB value is (201,203,219).
RGB: (201,203,219) (79%,80%,86%)
R 201 of 255 = 79%
G 203 of 255 = 80%
B 219 of 255 = 86%
R + G + B ~ 82%. #C9CBDB is quite light color.
R + G + B =
201 + 203 + 219 = 623 (100%)
R 201 of 623 ~ 32.26%
G 203 of 623 ~ 32.58%
B 219 of 623 ~ 35.15%
#C9CBDB color CMYK value is (8,7,0,14).
CMYK: (8,7,0,14) C8M7Y0K14 (8%,7%,0%,14%) (0.08/0.07/0.00/0.14)
C9 | CB | DB | |
---|---|---|---|
RGB | 201 | 203 | 219 |
HSL | 233° | 20.00% | 82.35% |
HSB/HSV | 233° | 8.22% | 85.88% |
CMYK | 8.22% | 7.31% | 0.00% |
14.12% |
HEX | C9 | CB | DB |
Decimal | 201 | 203 | 219 |
Binary | 11001001 | 11001011 | 11011011 |
Octal | 311 | 313 | 333 |
Examples of css and html codes for elements with #C9CBDB color. Also use rgb(201,203,219) instead hex code.
.myTextColor { color: #C9CBDB; }
<p style="color:#C9CBDB">This sample text font color is #C9CBDB.</p>
This text font color is #C9CBDB.
.myBgColor { background-color: #C9CBDB; }
<div style="background-color:#C9CBDB">Inner text</div>
This div background color is #C9CBDB.
.myBorderColor { border: 1px solid #C9CBDB; }
<div style="border:3px solid #C9CBDB">Div</div>
This div border color is #C9CBDB.
.myOpacity80 { color: #C9CBDB; opacity: 0.8; }
<p style="color:#C9CBDB;opacity:0.8;">80%</p>
Text with #C9CBDB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C9CBDB;}
<p style="text-shadow: 3px 3px 1px #C9CBDB">Text here.</p>
This text has shadow with #C9CBDB color.
.textShadow {text-shadow: 3px 3px 1px #C9CBDB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C9CBDB, 5px 5px 20px red">Text here.</p>
This text has shadow with #C9CBDB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C9CBDB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C9CBDB, Direction=45, Strength=4)">Text</p>
This text has shadow with #C9CBDB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C9CBDB; -webkit-box-shadow: 1px 1px 3px 2px #C9CBDB; box-shadow: 1px 1px 3px 2px #C9CBDB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C9CBDB; -webkit-box-shadow: 1px 1px 3px 2px #C9CBDB; box-shadow:1px 1px 3px 2px #C9CBDB;">
Div content here</div>
This text has color #C9CBDB on black background.
This text has color #C9CBDB on white background.
This text has black color on #C9CBDB background.
This text has white color on #C9CBDB background.