HEX: #C9DFDB
RGB: (201,223,219)
#C9DFDB contains red, green and blue colors in about the same proportion. Web safe color of #C9DFDB is #CCCCCC (or #CCC).
#C9DFDB color RGB value is (201,223,219).
RGB: (201,223,219) (79%,87%,86%)
R 201 of 255 = 79%
G 223 of 255 = 87%
B 219 of 255 = 86%
R + G + B ~ 84%. #C9DFDB is quite light color.
R + G + B =
201 + 223 + 219 = 643 (100%)
R 201 of 643 ~ 31.26%
G 223 of 643 ~ 34.68%
B 219 of 643 ~ 34.06%
#C9DFDB color CMYK value is (10,0,2,13).
CMYK: (10,0,2,13) C10M0Y2K13 (10%,0%,2%,13%) (0.10/0.00/0.02/0.13)
C9 | DF | DB | |
---|---|---|---|
RGB | 201 | 223 | 219 |
HSL | 169° | 25.58% | 83.14% |
HSB/HSV | 169° | 9.87% | 87.45% |
CMYK | 9.87% | 0.00% | 1.79% |
12.55% |
HEX | C9 | DF | DB |
Decimal | 201 | 223 | 219 |
Binary | 11001001 | 11011111 | 11011011 |
Octal | 311 | 337 | 333 |
Examples of css and html codes for elements with #C9DFDB color. Also use rgb(201,223,219) instead hex code.
.myTextColor { color: #C9DFDB; }
<p style="color:#C9DFDB">This sample text font color is #C9DFDB.</p>
This text font color is #C9DFDB.
.myBgColor { background-color: #C9DFDB; }
<div style="background-color:#C9DFDB">Inner text</div>
This div background color is #C9DFDB.
.myBorderColor { border: 1px solid #C9DFDB; }
<div style="border:3px solid #C9DFDB">Div</div>
This div border color is #C9DFDB.
.myOpacity80 { color: #C9DFDB; opacity: 0.8; }
<p style="color:#C9DFDB;opacity:0.8;">80%</p>
Text with #C9DFDB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C9DFDB;}
<p style="text-shadow: 3px 3px 1px #C9DFDB">Text here.</p>
This text has shadow with #C9DFDB color.
.textShadow {text-shadow: 3px 3px 1px #C9DFDB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C9DFDB, 5px 5px 20px red">Text here.</p>
This text has shadow with #C9DFDB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C9DFDB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C9DFDB, Direction=45, Strength=4)">Text</p>
This text has shadow with #C9DFDB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C9DFDB; -webkit-box-shadow: 1px 1px 3px 2px #C9DFDB; box-shadow: 1px 1px 3px 2px #C9DFDB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C9DFDB; -webkit-box-shadow: 1px 1px 3px 2px #C9DFDB; box-shadow:1px 1px 3px 2px #C9DFDB;">
Div content here</div>
This text has color #C9DFDB on black background.
This text has color #C9DFDB on white background.
This text has black color on #C9DFDB background.
This text has white color on #C9DFDB background.