HEX: #C9DEFF
RGB: (201,222,255)
#C9DEFF contains red, green and blue colors in about the same proportion. Web safe color of #C9DEFF is #CCCCFF (or #CCF).
#C9DEFF color RGB value is (201,222,255).
RGB: (201,222,255) (79%,87%,100%)
R 201 of 255 = 79%
G 222 of 255 = 87%
B 255 of 255 = 100%
R + G + B ~ 89%. #C9DEFF is light color.
R + G + B =
201 + 222 + 255 = 678 (100%)
R 201 of 678 ~ 29.65%
G 222 of 678 ~ 32.74%
B 255 of 678 ~ 37.61%
#C9DEFF color CMYK value is (21,13,0,0).
CMYK: (21,13,0,0) C21M13Y0K0 (21%,13%,0%,0%) (0.21/0.13/0.00/0.00)
C9 | DE | FF | |
---|---|---|---|
RGB | 201 | 222 | 255 |
HSL | 217° | 100.00% | 89.41% |
HSB/HSV | 217° | 21.18% | 100.00% |
CMYK | 21.18% | 12.94% | 0.00% |
0.00% |
HEX | C9 | DE | FF |
Decimal | 201 | 222 | 255 |
Binary | 11001001 | 11011110 | 11111111 |
Octal | 311 | 336 | 377 |
Examples of css and html codes for elements with #C9DEFF color. Also use rgb(201,222,255) instead hex code.
.myTextColor { color: #C9DEFF; }
<p style="color:#C9DEFF">This sample text font color is #C9DEFF.</p>
This text font color is #C9DEFF.
.myBgColor { background-color: #C9DEFF; }
<div style="background-color:#C9DEFF">Inner text</div>
This div background color is #C9DEFF.
.myBorderColor { border: 1px solid #C9DEFF; }
<div style="border:3px solid #C9DEFF">Div</div>
This div border color is #C9DEFF.
.myOpacity80 { color: #C9DEFF; opacity: 0.8; }
<p style="color:#C9DEFF;opacity:0.8;">80%</p>
Text with #C9DEFF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C9DEFF;}
<p style="text-shadow: 3px 3px 1px #C9DEFF">Text here.</p>
This text has shadow with #C9DEFF color.
.textShadow {text-shadow: 3px 3px 1px #C9DEFF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C9DEFF, 5px 5px 20px red">Text here.</p>
This text has shadow with #C9DEFF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C9DEFF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C9DEFF, Direction=45, Strength=4)">Text</p>
This text has shadow with #C9DEFF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C9DEFF; -webkit-box-shadow: 1px 1px 3px 2px #C9DEFF; box-shadow: 1px 1px 3px 2px #C9DEFF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C9DEFF; -webkit-box-shadow: 1px 1px 3px 2px #C9DEFF; box-shadow:1px 1px 3px 2px #C9DEFF;">
Div content here</div>
This text has color #C9DEFF on black background.
This text has color #C9DEFF on white background.
This text has black color on #C9DEFF background.
This text has white color on #C9DEFF background.