HEX: #C9EEE9
RGB: (201,238,233)
#C9EEE9 contains red, green and blue colors in about the same proportion. Web safe color of #C9EEE9 is #CCFFFF (or #CFF).
#C9EEE9 color RGB value is (201,238,233).
RGB: (201,238,233) (79%,93%,91%)
R 201 of 255 = 79%
G 238 of 255 = 93%
B 233 of 255 = 91%
R + G + B ~ 88%. #C9EEE9 is light color.
R + G + B =
201 + 238 + 233 = 672 (100%)
R 201 of 672 ~ 29.91%
G 238 of 672 ~ 35.42%
B 233 of 672 ~ 34.67%
#C9EEE9 color CMYK value is (16,0,2,7).
CMYK: (16,0,2,7) C16M0Y2K7 (16%,0%,2%,7%) (0.16/0.00/0.02/0.07)
C9 | EE | E9 | |
---|---|---|---|
RGB | 201 | 238 | 233 |
HSL | 172° | 52.11% | 86.08% |
HSB/HSV | 172° | 15.55% | 93.33% |
CMYK | 15.55% | 0.00% | 2.10% |
6.67% |
HEX | C9 | EE | E9 |
Decimal | 201 | 238 | 233 |
Binary | 11001001 | 11101110 | 11101001 |
Octal | 311 | 356 | 351 |
Examples of css and html codes for elements with #C9EEE9 color. Also use rgb(201,238,233) instead hex code.
.myTextColor { color: #C9EEE9; }
<p style="color:#C9EEE9">This sample text font color is #C9EEE9.</p>
This text font color is #C9EEE9.
.myBgColor { background-color: #C9EEE9; }
<div style="background-color:#C9EEE9">Inner text</div>
This div background color is #C9EEE9.
.myBorderColor { border: 1px solid #C9EEE9; }
<div style="border:3px solid #C9EEE9">Div</div>
This div border color is #C9EEE9.
.myOpacity80 { color: #C9EEE9; opacity: 0.8; }
<p style="color:#C9EEE9;opacity:0.8;">80%</p>
Text with #C9EEE9 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C9EEE9;}
<p style="text-shadow: 3px 3px 1px #C9EEE9">Text here.</p>
This text has shadow with #C9EEE9 color.
.textShadow {text-shadow: 3px 3px 1px #C9EEE9, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C9EEE9, 5px 5px 20px red">Text here.</p>
This text has shadow with #C9EEE9 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C9EEE9, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C9EEE9, Direction=45, Strength=4)">Text</p>
This text has shadow with #C9EEE9 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C9EEE9; -webkit-box-shadow: 1px 1px 3px 2px #C9EEE9; box-shadow: 1px 1px 3px 2px #C9EEE9; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C9EEE9; -webkit-box-shadow: 1px 1px 3px 2px #C9EEE9; box-shadow:1px 1px 3px 2px #C9EEE9;">
Div content here</div>
This text has color #C9EEE9 on black background.
This text has color #C9EEE9 on white background.
This text has black color on #C9EEE9 background.
This text has white color on #C9EEE9 background.