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