HEX: #E9FADB
RGB: (233,250,219)
#E9FADB contains red, green and blue colors in about the same proportion. Web safe color of #E9FADB is #FFFFCC (or #FFC).
#E9FADB color RGB value is (233,250,219).
RGB: (233,250,219) (91%,98%,86%)
R 233 of 255 = 91%
G 250 of 255 = 98%
B 219 of 255 = 86%
R + G + B ~ 92%. #E9FADB is light color.
R + G + B =
233 + 250 + 219 = 702 (100%)
R 233 of 702 ~ 33.19%
G 250 of 702 ~ 35.61%
B 219 of 702 ~ 31.2%
#E9FADB color CMYK value is (7,0,12,2).
CMYK: (7,0,12,2) C7M0Y12K2 (7%,0%,12%,2%) (0.07/0.00/0.12/0.02)
E9 | FA | DB | |
---|---|---|---|
RGB | 233 | 250 | 219 |
HSL | 93° | 75.61% | 91.96% |
HSB/HSV | 93° | 12.40% | 98.04% |
CMYK | 6.80% | 0.00% | 12.40% |
1.96% |
HEX | E9 | FA | DB |
Decimal | 233 | 250 | 219 |
Binary | 11101001 | 11111010 | 11011011 |
Octal | 351 | 372 | 333 |
Examples of css and html codes for elements with #E9FADB color. Also use rgb(233,250,219) instead hex code.
.myTextColor { color: #E9FADB; }
<p style="color:#E9FADB">This sample text font color is #E9FADB.</p>
This text font color is #E9FADB.
.myBgColor { background-color: #E9FADB; }
<div style="background-color:#E9FADB">Inner text</div>
This div background color is #E9FADB.
.myBorderColor { border: 1px solid #E9FADB; }
<div style="border:3px solid #E9FADB">Div</div>
This div border color is #E9FADB.
.myOpacity80 { color: #E9FADB; opacity: 0.8; }
<p style="color:#E9FADB;opacity:0.8;">80%</p>
Text with #E9FADB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E9FADB;}
<p style="text-shadow: 3px 3px 1px #E9FADB">Text here.</p>
This text has shadow with #E9FADB color.
.textShadow {text-shadow: 3px 3px 1px #E9FADB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E9FADB, 5px 5px 20px red">Text here.</p>
This text has shadow with #E9FADB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E9FADB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E9FADB, Direction=45, Strength=4)">Text</p>
This text has shadow with #E9FADB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E9FADB; -webkit-box-shadow: 1px 1px 3px 2px #E9FADB; box-shadow: 1px 1px 3px 2px #E9FADB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E9FADB; -webkit-box-shadow: 1px 1px 3px 2px #E9FADB; box-shadow:1px 1px 3px 2px #E9FADB;">
Div content here</div>
This text has color #E9FADB on black background.
This text has color #E9FADB on white background.
This text has black color on #E9FADB background.
This text has white color on #E9FADB background.