HEX: #E9F9CB
RGB: (233,249,203)
#E9F9CB contains red, green and blue colors in about the same proportion. Web safe color of #E9F9CB is #FFFFCC (or #FFC).
#E9F9CB color RGB value is (233,249,203).
RGB: (233,249,203) (91%,98%,80%)
R 233 of 255 = 91%
G 249 of 255 = 98%
B 203 of 255 = 80%
R + G + B ~ 90%. #E9F9CB is light color.
R + G + B =
233 + 249 + 203 = 685 (100%)
R 233 of 685 ~ 34.01%
G 249 of 685 ~ 36.35%
B 203 of 685 ~ 29.64%
#E9F9CB color CMYK value is (6,0,18,2).
CMYK: (6,0,18,2) C6M0Y18K2 (6%,0%,18%,2%) (0.06/0.00/0.18/0.02)
E9 | F9 | CB | |
---|---|---|---|
RGB | 233 | 249 | 203 |
HSL | 81° | 79.31% | 88.63% |
HSB/HSV | 81° | 18.47% | 97.65% |
CMYK | 6.43% | 0.00% | 18.47% |
2.35% |
HEX | E9 | F9 | CB |
Decimal | 233 | 249 | 203 |
Binary | 11101001 | 11111001 | 11001011 |
Octal | 351 | 371 | 313 |
Examples of css and html codes for elements with #E9F9CB color. Also use rgb(233,249,203) instead hex code.
.myTextColor { color: #E9F9CB; }
<p style="color:#E9F9CB">This sample text font color is #E9F9CB.</p>
This text font color is #E9F9CB.
.myBgColor { background-color: #E9F9CB; }
<div style="background-color:#E9F9CB">Inner text</div>
This div background color is #E9F9CB.
.myBorderColor { border: 1px solid #E9F9CB; }
<div style="border:3px solid #E9F9CB">Div</div>
This div border color is #E9F9CB.
.myOpacity80 { color: #E9F9CB; opacity: 0.8; }
<p style="color:#E9F9CB;opacity:0.8;">80%</p>
Text with #E9F9CB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E9F9CB;}
<p style="text-shadow: 3px 3px 1px #E9F9CB">Text here.</p>
This text has shadow with #E9F9CB color.
.textShadow {text-shadow: 3px 3px 1px #E9F9CB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E9F9CB, 5px 5px 20px red">Text here.</p>
This text has shadow with #E9F9CB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E9F9CB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E9F9CB, Direction=45, Strength=4)">Text</p>
This text has shadow with #E9F9CB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E9F9CB; -webkit-box-shadow: 1px 1px 3px 2px #E9F9CB; box-shadow: 1px 1px 3px 2px #E9F9CB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E9F9CB; -webkit-box-shadow: 1px 1px 3px 2px #E9F9CB; box-shadow:1px 1px 3px 2px #E9F9CB;">
Div content here</div>
This text has color #E9F9CB on black background.
This text has color #E9F9CB on white background.
This text has black color on #E9F9CB background.
This text has white color on #E9F9CB background.