HEX: #C9E7BB
RGB: (201,231,187)
#C9E7BB contains red, green and blue colors in about the same proportion. Web safe color of #C9E7BB is #CCFFCC (or #CFC).
#C9E7BB color RGB value is (201,231,187).
RGB: (201,231,187) (79%,91%,73%)
R 201 of 255 = 79%
G 231 of 255 = 91%
B 187 of 255 = 73%
R + G + B ~ 81%. #C9E7BB is quite light color.
R + G + B =
201 + 231 + 187 = 619 (100%)
R 201 of 619 ~ 32.47%
G 231 of 619 ~ 37.32%
B 187 of 619 ~ 30.21%
#C9E7BB color CMYK value is (13,0,19,9).
CMYK: (13,0,19,9) C13M0Y19K9 (13%,0%,19%,9%) (0.13/0.00/0.19/0.09)
C9 | E7 | BB | |
---|---|---|---|
RGB | 201 | 231 | 187 |
HSL | 101° | 47.83% | 81.96% |
HSB/HSV | 101° | 19.05% | 90.59% |
CMYK | 12.99% | 0.00% | 19.05% |
9.41% |
HEX | C9 | E7 | BB |
Decimal | 201 | 231 | 187 |
Binary | 11001001 | 11100111 | 10111011 |
Octal | 311 | 347 | 273 |
Examples of css and html codes for elements with #C9E7BB color. Also use rgb(201,231,187) instead hex code.
.myTextColor { color: #C9E7BB; }
<p style="color:#C9E7BB">This sample text font color is #C9E7BB.</p>
This text font color is #C9E7BB.
.myBgColor { background-color: #C9E7BB; }
<div style="background-color:#C9E7BB">Inner text</div>
This div background color is #C9E7BB.
.myBorderColor { border: 1px solid #C9E7BB; }
<div style="border:3px solid #C9E7BB">Div</div>
This div border color is #C9E7BB.
.myOpacity80 { color: #C9E7BB; opacity: 0.8; }
<p style="color:#C9E7BB;opacity:0.8;">80%</p>
Text with #C9E7BB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C9E7BB;}
<p style="text-shadow: 3px 3px 1px #C9E7BB">Text here.</p>
This text has shadow with #C9E7BB color.
.textShadow {text-shadow: 3px 3px 1px #C9E7BB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C9E7BB, 5px 5px 20px red">Text here.</p>
This text has shadow with #C9E7BB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C9E7BB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C9E7BB, Direction=45, Strength=4)">Text</p>
This text has shadow with #C9E7BB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C9E7BB; -webkit-box-shadow: 1px 1px 3px 2px #C9E7BB; box-shadow: 1px 1px 3px 2px #C9E7BB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C9E7BB; -webkit-box-shadow: 1px 1px 3px 2px #C9E7BB; box-shadow:1px 1px 3px 2px #C9E7BB;">
Div content here</div>
This text has color #C9E7BB on black background.
This text has color #C9E7BB on white background.
This text has black color on #C9E7BB background.
This text has white color on #C9E7BB background.