HEX: #C9DBFB
RGB: (201,219,251)
#C9DBFB contains red, green and blue colors in about the same proportion. Web safe color of #C9DBFB is #CCCCFF (or #CCF).
#C9DBFB color RGB value is (201,219,251).
RGB: (201,219,251) (79%,86%,98%)
R 201 of 255 = 79%
G 219 of 255 = 86%
B 251 of 255 = 98%
R + G + B ~ 88%. #C9DBFB is light color.
R + G + B =
201 + 219 + 251 = 671 (100%)
R 201 of 671 ~ 29.96%
G 219 of 671 ~ 32.64%
B 251 of 671 ~ 37.41%
#C9DBFB color CMYK value is (20,13,0,2).
CMYK: (20,13,0,2) C20M13Y0K2 (20%,13%,0%,2%) (0.20/0.13/0.00/0.02)
C9 | DB | FB | |
---|---|---|---|
RGB | 201 | 219 | 251 |
HSL | 218° | 86.21% | 88.63% |
HSB/HSV | 218° | 19.92% | 98.43% |
CMYK | 19.92% | 12.75% | 0.00% |
1.57% |
HEX | C9 | DB | FB |
Decimal | 201 | 219 | 251 |
Binary | 11001001 | 11011011 | 11111011 |
Octal | 311 | 333 | 373 |
Examples of css and html codes for elements with #C9DBFB color. Also use rgb(201,219,251) instead hex code.
.myTextColor { color: #C9DBFB; }
<p style="color:#C9DBFB">This sample text font color is #C9DBFB.</p>
This text font color is #C9DBFB.
.myBgColor { background-color: #C9DBFB; }
<div style="background-color:#C9DBFB">Inner text</div>
This div background color is #C9DBFB.
.myBorderColor { border: 1px solid #C9DBFB; }
<div style="border:3px solid #C9DBFB">Div</div>
This div border color is #C9DBFB.
.myOpacity80 { color: #C9DBFB; opacity: 0.8; }
<p style="color:#C9DBFB;opacity:0.8;">80%</p>
Text with #C9DBFB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C9DBFB;}
<p style="text-shadow: 3px 3px 1px #C9DBFB">Text here.</p>
This text has shadow with #C9DBFB color.
.textShadow {text-shadow: 3px 3px 1px #C9DBFB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C9DBFB, 5px 5px 20px red">Text here.</p>
This text has shadow with #C9DBFB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C9DBFB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C9DBFB, Direction=45, Strength=4)">Text</p>
This text has shadow with #C9DBFB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C9DBFB; -webkit-box-shadow: 1px 1px 3px 2px #C9DBFB; box-shadow: 1px 1px 3px 2px #C9DBFB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C9DBFB; -webkit-box-shadow: 1px 1px 3px 2px #C9DBFB; box-shadow:1px 1px 3px 2px #C9DBFB;">
Div content here</div>
This text has color #C9DBFB on black background.
This text has color #C9DBFB on white background.
This text has black color on #C9DBFB background.
This text has white color on #C9DBFB background.