HEX: #E5EEED
RGB: (229,238,237)
#E5EEED contains red, green and blue colors in about the same proportion. Web safe color of #E5EEED is #CCFFFF (or #CFF).
#E5EEED color RGB value is (229,238,237).
RGB: (229,238,237) (90%,93%,93%)
R 229 of 255 = 90%
G 238 of 255 = 93%
B 237 of 255 = 93%
R + G + B ~ 92%. #E5EEED is light color.
R + G + B =
229 + 238 + 237 = 704 (100%)
R 229 of 704 ~ 32.53%
G 238 of 704 ~ 33.81%
B 237 of 704 ~ 33.66%
#E5EEED color CMYK value is (4,0,0,7).
CMYK: (4,0,0,7) C4M0Y0K7 (4%,0%,0%,7%) (0.04/0.00/0.00/0.07)
E5 | EE | ED | |
---|---|---|---|
RGB | 229 | 238 | 237 |
HSL | 173° | 20.93% | 91.57% |
HSB/HSV | 173° | 3.78% | 93.33% |
CMYK | 3.78% | 0.00% | 0.42% |
6.67% |
HEX | E5 | EE | ED |
Decimal | 229 | 238 | 237 |
Binary | 11100101 | 11101110 | 11101101 |
Octal | 345 | 356 | 355 |
Examples of css and html codes for elements with #E5EEED color. Also use rgb(229,238,237) instead hex code.
.myTextColor { color: #E5EEED; }
<p style="color:#E5EEED">This sample text font color is #E5EEED.</p>
This text font color is #E5EEED.
.myBgColor { background-color: #E5EEED; }
<div style="background-color:#E5EEED">Inner text</div>
This div background color is #E5EEED.
.myBorderColor { border: 1px solid #E5EEED; }
<div style="border:3px solid #E5EEED">Div</div>
This div border color is #E5EEED.
.myOpacity80 { color: #E5EEED; opacity: 0.8; }
<p style="color:#E5EEED;opacity:0.8;">80%</p>
Text with #E5EEED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E5EEED;}
<p style="text-shadow: 3px 3px 1px #E5EEED">Text here.</p>
This text has shadow with #E5EEED color.
.textShadow {text-shadow: 3px 3px 1px #E5EEED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E5EEED, 5px 5px 20px red">Text here.</p>
This text has shadow with #E5EEED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E5EEED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E5EEED, Direction=45, Strength=4)">Text</p>
This text has shadow with #E5EEED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E5EEED; -webkit-box-shadow: 1px 1px 3px 2px #E5EEED; box-shadow: 1px 1px 3px 2px #E5EEED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E5EEED; -webkit-box-shadow: 1px 1px 3px 2px #E5EEED; box-shadow:1px 1px 3px 2px #E5EEED;">
Div content here</div>
This text has color #E5EEED on black background.
This text has color #E5EEED on white background.
This text has black color on #E5EEED background.
This text has white color on #E5EEED background.