HEX: #C9FDEB
RGB: (201,253,235)
#C9FDEB contains red, green and blue colors in about the same proportion. Web safe color of #C9FDEB is #CCFFFF (or #CFF).
#C9FDEB color RGB value is (201,253,235).
RGB: (201,253,235) (79%,99%,92%)
R 201 of 255 = 79%
G 253 of 255 = 99%
B 235 of 255 = 92%
R + G + B ~ 90%. #C9FDEB is light color.
R + G + B =
201 + 253 + 235 = 689 (100%)
R 201 of 689 ~ 29.17%
G 253 of 689 ~ 36.72%
B 235 of 689 ~ 34.11%
#C9FDEB color CMYK value is (21,0,7,1).
CMYK: (21,0,7,1) C21M0Y7K1 (21%,0%,7%,1%) (0.21/0.00/0.07/0.01)
C9 | FD | EB | |
---|---|---|---|
RGB | 201 | 253 | 235 |
HSL | 159° | 92.86% | 89.02% |
HSB/HSV | 159° | 20.55% | 99.22% |
CMYK | 20.55% | 0.00% | 7.11% |
0.78% |
HEX | C9 | FD | EB |
Decimal | 201 | 253 | 235 |
Binary | 11001001 | 11111101 | 11101011 |
Octal | 311 | 375 | 353 |
Examples of css and html codes for elements with #C9FDEB color. Also use rgb(201,253,235) instead hex code.
.myTextColor { color: #C9FDEB; }
<p style="color:#C9FDEB">This sample text font color is #C9FDEB.</p>
This text font color is #C9FDEB.
.myBgColor { background-color: #C9FDEB; }
<div style="background-color:#C9FDEB">Inner text</div>
This div background color is #C9FDEB.
.myBorderColor { border: 1px solid #C9FDEB; }
<div style="border:3px solid #C9FDEB">Div</div>
This div border color is #C9FDEB.
.myOpacity80 { color: #C9FDEB; opacity: 0.8; }
<p style="color:#C9FDEB;opacity:0.8;">80%</p>
Text with #C9FDEB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C9FDEB;}
<p style="text-shadow: 3px 3px 1px #C9FDEB">Text here.</p>
This text has shadow with #C9FDEB color.
.textShadow {text-shadow: 3px 3px 1px #C9FDEB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C9FDEB, 5px 5px 20px red">Text here.</p>
This text has shadow with #C9FDEB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C9FDEB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C9FDEB, Direction=45, Strength=4)">Text</p>
This text has shadow with #C9FDEB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C9FDEB; -webkit-box-shadow: 1px 1px 3px 2px #C9FDEB; box-shadow: 1px 1px 3px 2px #C9FDEB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C9FDEB; -webkit-box-shadow: 1px 1px 3px 2px #C9FDEB; box-shadow:1px 1px 3px 2px #C9FDEB;">
Div content here</div>
This text has color #C9FDEB on black background.
This text has color #C9FDEB on white background.
This text has black color on #C9FDEB background.
This text has white color on #C9FDEB background.