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