HEX: #E5E9DF
RGB: (229,233,223)
#E5E9DF contains red, green and blue colors in about the same proportion. Web safe color of #E5E9DF is #CCFFCC (or #CFC).
#E5E9DF color RGB value is (229,233,223).
RGB: (229,233,223) (90%,91%,87%)
R 229 of 255 = 90%
G 233 of 255 = 91%
B 223 of 255 = 87%
R + G + B ~ 89%. #E5E9DF is light color.
R + G + B =
229 + 233 + 223 = 685 (100%)
R 229 of 685 ~ 33.43%
G 233 of 685 ~ 34.01%
B 223 of 685 ~ 32.55%
#E5E9DF color CMYK value is (2,0,4,9).
CMYK: (2,0,4,9) C2M0Y4K9 (2%,0%,4%,9%) (0.02/0.00/0.04/0.09)
E5 | E9 | DF | |
---|---|---|---|
RGB | 229 | 233 | 223 |
HSL | 84° | 18.52% | 89.41% |
HSB/HSV | 84° | 4.29% | 91.37% |
CMYK | 1.72% | 0.00% | 4.29% |
8.63% |
HEX | E5 | E9 | DF |
Decimal | 229 | 233 | 223 |
Binary | 11100101 | 11101001 | 11011111 |
Octal | 345 | 351 | 337 |
Examples of css and html codes for elements with #E5E9DF color. Also use rgb(229,233,223) instead hex code.
.myTextColor { color: #E5E9DF; }
<p style="color:#E5E9DF">This sample text font color is #E5E9DF.</p>
This text font color is #E5E9DF.
.myBgColor { background-color: #E5E9DF; }
<div style="background-color:#E5E9DF">Inner text</div>
This div background color is #E5E9DF.
.myBorderColor { border: 1px solid #E5E9DF; }
<div style="border:3px solid #E5E9DF">Div</div>
This div border color is #E5E9DF.
.myOpacity80 { color: #E5E9DF; opacity: 0.8; }
<p style="color:#E5E9DF;opacity:0.8;">80%</p>
Text with #E5E9DF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E5E9DF;}
<p style="text-shadow: 3px 3px 1px #E5E9DF">Text here.</p>
This text has shadow with #E5E9DF color.
.textShadow {text-shadow: 3px 3px 1px #E5E9DF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E5E9DF, 5px 5px 20px red">Text here.</p>
This text has shadow with #E5E9DF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E5E9DF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E5E9DF, Direction=45, Strength=4)">Text</p>
This text has shadow with #E5E9DF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E5E9DF; -webkit-box-shadow: 1px 1px 3px 2px #E5E9DF; box-shadow: 1px 1px 3px 2px #E5E9DF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E5E9DF; -webkit-box-shadow: 1px 1px 3px 2px #E5E9DF; box-shadow:1px 1px 3px 2px #E5E9DF;">
Div content here</div>
This text has color #E5E9DF on black background.
This text has color #E5E9DF on white background.
This text has black color on #E5E9DF background.
This text has white color on #E5E9DF background.