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