HEX: #E9F6DF
RGB: (233,246,223)
#E9F6DF contains red, green and blue colors in about the same proportion. Web safe color of #E9F6DF is #FFFFCC (or #FFC).
#E9F6DF color RGB value is (233,246,223).
RGB: (233,246,223) (91%,96%,87%)
R 233 of 255 = 91%
G 246 of 255 = 96%
B 223 of 255 = 87%
R + G + B ~ 91%. #E9F6DF is light color.
R + G + B =
233 + 246 + 223 = 702 (100%)
R 233 of 702 ~ 33.19%
G 246 of 702 ~ 35.04%
B 223 of 702 ~ 31.77%
#E9F6DF color CMYK value is (5,0,9,4).
CMYK: (5,0,9,4) C5M0Y9K4 (5%,0%,9%,4%) (0.05/0.00/0.09/0.04)
E9 | F6 | DF | |
---|---|---|---|
RGB | 233 | 246 | 223 |
HSL | 94° | 56.10% | 91.96% |
HSB/HSV | 94° | 9.35% | 96.47% |
CMYK | 5.28% | 0.00% | 9.35% |
3.53% |
HEX | E9 | F6 | DF |
Decimal | 233 | 246 | 223 |
Binary | 11101001 | 11110110 | 11011111 |
Octal | 351 | 366 | 337 |
Examples of css and html codes for elements with #E9F6DF color. Also use rgb(233,246,223) instead hex code.
.myTextColor { color: #E9F6DF; }
<p style="color:#E9F6DF">This sample text font color is #E9F6DF.</p>
This text font color is #E9F6DF.
.myBgColor { background-color: #E9F6DF; }
<div style="background-color:#E9F6DF">Inner text</div>
This div background color is #E9F6DF.
.myBorderColor { border: 1px solid #E9F6DF; }
<div style="border:3px solid #E9F6DF">Div</div>
This div border color is #E9F6DF.
.myOpacity80 { color: #E9F6DF; opacity: 0.8; }
<p style="color:#E9F6DF;opacity:0.8;">80%</p>
Text with #E9F6DF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E9F6DF;}
<p style="text-shadow: 3px 3px 1px #E9F6DF">Text here.</p>
This text has shadow with #E9F6DF color.
.textShadow {text-shadow: 3px 3px 1px #E9F6DF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E9F6DF, 5px 5px 20px red">Text here.</p>
This text has shadow with #E9F6DF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E9F6DF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E9F6DF, Direction=45, Strength=4)">Text</p>
This text has shadow with #E9F6DF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E9F6DF; -webkit-box-shadow: 1px 1px 3px 2px #E9F6DF; box-shadow: 1px 1px 3px 2px #E9F6DF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E9F6DF; -webkit-box-shadow: 1px 1px 3px 2px #E9F6DF; box-shadow:1px 1px 3px 2px #E9F6DF;">
Div content here</div>
This text has color #E9F6DF on black background.
This text has color #E9F6DF on white background.
This text has black color on #E9F6DF background.
This text has white color on #E9F6DF background.