HEX: #C9E9EF
RGB: (201,233,239)
#C9E9EF contains red, green and blue colors in about the same proportion. Web safe color of #C9E9EF is #CCFFFF (or #CFF).
#C9E9EF color RGB value is (201,233,239).
RGB: (201,233,239) (79%,91%,94%)
R 201 of 255 = 79%
G 233 of 255 = 91%
B 239 of 255 = 94%
R + G + B ~ 88%. #C9E9EF is light color.
R + G + B =
201 + 233 + 239 = 673 (100%)
R 201 of 673 ~ 29.87%
G 233 of 673 ~ 34.62%
B 239 of 673 ~ 35.51%
#C9E9EF color CMYK value is (16,3,0,6).
CMYK: (16,3,0,6) C16M3Y0K6 (16%,3%,0%,6%) (0.16/0.03/0.00/0.06)
C9 | E9 | EF | |
---|---|---|---|
RGB | 201 | 233 | 239 |
HSL | 189° | 54.29% | 86.27% |
HSB/HSV | 189° | 15.90% | 93.73% |
CMYK | 15.90% | 2.51% | 0.00% |
6.27% |
HEX | C9 | E9 | EF |
Decimal | 201 | 233 | 239 |
Binary | 11001001 | 11101001 | 11101111 |
Octal | 311 | 351 | 357 |
Examples of css and html codes for elements with #C9E9EF color. Also use rgb(201,233,239) instead hex code.
.myTextColor { color: #C9E9EF; }
<p style="color:#C9E9EF">This sample text font color is #C9E9EF.</p>
This text font color is #C9E9EF.
.myBgColor { background-color: #C9E9EF; }
<div style="background-color:#C9E9EF">Inner text</div>
This div background color is #C9E9EF.
.myBorderColor { border: 1px solid #C9E9EF; }
<div style="border:3px solid #C9E9EF">Div</div>
This div border color is #C9E9EF.
.myOpacity80 { color: #C9E9EF; opacity: 0.8; }
<p style="color:#C9E9EF;opacity:0.8;">80%</p>
Text with #C9E9EF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C9E9EF;}
<p style="text-shadow: 3px 3px 1px #C9E9EF">Text here.</p>
This text has shadow with #C9E9EF color.
.textShadow {text-shadow: 3px 3px 1px #C9E9EF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C9E9EF, 5px 5px 20px red">Text here.</p>
This text has shadow with #C9E9EF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C9E9EF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C9E9EF, Direction=45, Strength=4)">Text</p>
This text has shadow with #C9E9EF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C9E9EF; -webkit-box-shadow: 1px 1px 3px 2px #C9E9EF; box-shadow: 1px 1px 3px 2px #C9E9EF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C9E9EF; -webkit-box-shadow: 1px 1px 3px 2px #C9E9EF; box-shadow:1px 1px 3px 2px #C9E9EF;">
Div content here</div>
This text has color #C9E9EF on black background.
This text has color #C9E9EF on white background.
This text has black color on #C9E9EF background.
This text has white color on #C9E9EF background.