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