HEX: #E2EEDB
RGB: (226,238,219)
#E2EEDB contains red, green and blue colors in about the same proportion. Web safe color of #E2EEDB is #CCFFCC (or #CFC).
#E2EEDB color RGB value is (226,238,219).
RGB: (226,238,219) (89%,93%,86%)
R 226 of 255 = 89%
G 238 of 255 = 93%
B 219 of 255 = 86%
R + G + B ~ 89%. #E2EEDB is light color.
R + G + B =
226 + 238 + 219 = 683 (100%)
R 226 of 683 ~ 33.09%
G 238 of 683 ~ 34.85%
B 219 of 683 ~ 32.06%
#E2EEDB color CMYK value is (5,0,8,7).
CMYK: (5,0,8,7) C5M0Y8K7 (5%,0%,8%,7%) (0.05/0.00/0.08/0.07)
E2 | EE | DB | |
---|---|---|---|
RGB | 226 | 238 | 219 |
HSL | 98° | 35.85% | 89.61% |
HSB/HSV | 98° | 7.98% | 93.33% |
CMYK | 5.04% | 0.00% | 7.98% |
6.67% |
HEX | E2 | EE | DB |
Decimal | 226 | 238 | 219 |
Binary | 11100010 | 11101110 | 11011011 |
Octal | 342 | 356 | 333 |
Examples of css and html codes for elements with #E2EEDB color. Also use rgb(226,238,219) instead hex code.
.myTextColor { color: #E2EEDB; }
<p style="color:#E2EEDB">This sample text font color is #E2EEDB.</p>
This text font color is #E2EEDB.
.myBgColor { background-color: #E2EEDB; }
<div style="background-color:#E2EEDB">Inner text</div>
This div background color is #E2EEDB.
.myBorderColor { border: 1px solid #E2EEDB; }
<div style="border:3px solid #E2EEDB">Div</div>
This div border color is #E2EEDB.
.myOpacity80 { color: #E2EEDB; opacity: 0.8; }
<p style="color:#E2EEDB;opacity:0.8;">80%</p>
Text with #E2EEDB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E2EEDB;}
<p style="text-shadow: 3px 3px 1px #E2EEDB">Text here.</p>
This text has shadow with #E2EEDB color.
.textShadow {text-shadow: 3px 3px 1px #E2EEDB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E2EEDB, 5px 5px 20px red">Text here.</p>
This text has shadow with #E2EEDB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E2EEDB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E2EEDB, Direction=45, Strength=4)">Text</p>
This text has shadow with #E2EEDB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E2EEDB; -webkit-box-shadow: 1px 1px 3px 2px #E2EEDB; box-shadow: 1px 1px 3px 2px #E2EEDB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E2EEDB; -webkit-box-shadow: 1px 1px 3px 2px #E2EEDB; box-shadow:1px 1px 3px 2px #E2EEDB;">
Div content here</div>
This text has color #E2EEDB on black background.
This text has color #E2EEDB on white background.
This text has black color on #E2EEDB background.
This text has white color on #E2EEDB background.