HEX: #C9F0DF
RGB: (201,240,223)
#C9F0DF contains red, green and blue colors in about the same proportion. Web safe color of #C9F0DF is #CCFFCC (or #CFC).
#C9F0DF color RGB value is (201,240,223).
RGB: (201,240,223) (79%,94%,87%)
R 201 of 255 = 79%
G 240 of 255 = 94%
B 223 of 255 = 87%
R + G + B ~ 87%. #C9F0DF is light color.
R + G + B =
201 + 240 + 223 = 664 (100%)
R 201 of 664 ~ 30.27%
G 240 of 664 ~ 36.14%
B 223 of 664 ~ 33.58%
#C9F0DF color CMYK value is (16,0,7,6).
CMYK: (16,0,7,6) C16M0Y7K6 (16%,0%,7%,6%) (0.16/0.00/0.07/0.06)
C9 | F0 | DF | |
---|---|---|---|
RGB | 201 | 240 | 223 |
HSL | 154° | 56.52% | 86.47% |
HSB/HSV | 154° | 16.25% | 94.12% |
CMYK | 16.25% | 0.00% | 7.08% |
5.88% |
HEX | C9 | F0 | DF |
Decimal | 201 | 240 | 223 |
Binary | 11001001 | 11110000 | 11011111 |
Octal | 311 | 360 | 337 |
Examples of css and html codes for elements with #C9F0DF color. Also use rgb(201,240,223) instead hex code.
.myTextColor { color: #C9F0DF; }
<p style="color:#C9F0DF">This sample text font color is #C9F0DF.</p>
This text font color is #C9F0DF.
.myBgColor { background-color: #C9F0DF; }
<div style="background-color:#C9F0DF">Inner text</div>
This div background color is #C9F0DF.
.myBorderColor { border: 1px solid #C9F0DF; }
<div style="border:3px solid #C9F0DF">Div</div>
This div border color is #C9F0DF.
.myOpacity80 { color: #C9F0DF; opacity: 0.8; }
<p style="color:#C9F0DF;opacity:0.8;">80%</p>
Text with #C9F0DF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C9F0DF;}
<p style="text-shadow: 3px 3px 1px #C9F0DF">Text here.</p>
This text has shadow with #C9F0DF color.
.textShadow {text-shadow: 3px 3px 1px #C9F0DF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C9F0DF, 5px 5px 20px red">Text here.</p>
This text has shadow with #C9F0DF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C9F0DF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C9F0DF, Direction=45, Strength=4)">Text</p>
This text has shadow with #C9F0DF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C9F0DF; -webkit-box-shadow: 1px 1px 3px 2px #C9F0DF; box-shadow: 1px 1px 3px 2px #C9F0DF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C9F0DF; -webkit-box-shadow: 1px 1px 3px 2px #C9F0DF; box-shadow:1px 1px 3px 2px #C9F0DF;">
Div content here</div>
This text has color #C9F0DF on black background.
This text has color #C9F0DF on white background.
This text has black color on #C9F0DF background.
This text has white color on #C9F0DF background.