HEX: #C9FBCE
RGB: (201,251,206)
#C9FBCE contains red, green and blue colors in about the same proportion. Web safe color of #C9FBCE is #CCFFCC (or #CFC).
#C9FBCE color RGB value is (201,251,206).
RGB: (201,251,206) (79%,98%,81%)
R 201 of 255 = 79%
G 251 of 255 = 98%
B 206 of 255 = 81%
R + G + B ~ 86%. #C9FBCE is light color.
R + G + B =
201 + 251 + 206 = 658 (100%)
R 201 of 658 ~ 30.55%
G 251 of 658 ~ 38.15%
B 206 of 658 ~ 31.31%
#C9FBCE color CMYK value is (20,0,18,2).
CMYK: (20,0,18,2) C20M0Y18K2 (20%,0%,18%,2%) (0.20/0.00/0.18/0.02)
C9 | FB | CE | |
---|---|---|---|
RGB | 201 | 251 | 206 |
HSL | 126° | 86.21% | 88.63% |
HSB/HSV | 126° | 19.92% | 98.43% |
CMYK | 19.92% | 0.00% | 17.93% |
1.57% |
HEX | C9 | FB | CE |
Decimal | 201 | 251 | 206 |
Binary | 11001001 | 11111011 | 11001110 |
Octal | 311 | 373 | 316 |
Examples of css and html codes for elements with #C9FBCE color. Also use rgb(201,251,206) instead hex code.
.myTextColor { color: #C9FBCE; }
<p style="color:#C9FBCE">This sample text font color is #C9FBCE.</p>
This text font color is #C9FBCE.
.myBgColor { background-color: #C9FBCE; }
<div style="background-color:#C9FBCE">Inner text</div>
This div background color is #C9FBCE.
.myBorderColor { border: 1px solid #C9FBCE; }
<div style="border:3px solid #C9FBCE">Div</div>
This div border color is #C9FBCE.
.myOpacity80 { color: #C9FBCE; opacity: 0.8; }
<p style="color:#C9FBCE;opacity:0.8;">80%</p>
Text with #C9FBCE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C9FBCE;}
<p style="text-shadow: 3px 3px 1px #C9FBCE">Text here.</p>
This text has shadow with #C9FBCE color.
.textShadow {text-shadow: 3px 3px 1px #C9FBCE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C9FBCE, 5px 5px 20px red">Text here.</p>
This text has shadow with #C9FBCE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C9FBCE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C9FBCE, Direction=45, Strength=4)">Text</p>
This text has shadow with #C9FBCE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C9FBCE; -webkit-box-shadow: 1px 1px 3px 2px #C9FBCE; box-shadow: 1px 1px 3px 2px #C9FBCE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C9FBCE; -webkit-box-shadow: 1px 1px 3px 2px #C9FBCE; box-shadow:1px 1px 3px 2px #C9FBCE;">
Div content here</div>
This text has color #C9FBCE on black background.
This text has color #C9FBCE on white background.
This text has black color on #C9FBCE background.
This text has white color on #C9FBCE background.