HEX: #E4EDEE
RGB: (228,237,238)
#E4EDEE contains red, green and blue colors in about the same proportion. Web safe color of #E4EDEE is #CCFFFF (or #CFF).
#E4EDEE color RGB value is (228,237,238).
RGB: (228,237,238) (89%,93%,93%)
R 228 of 255 = 89%
G 237 of 255 = 93%
B 238 of 255 = 93%
R + G + B ~ 92%. #E4EDEE is light color.
R + G + B =
228 + 237 + 238 = 703 (100%)
R 228 of 703 ~ 32.43%
G 237 of 703 ~ 33.71%
B 238 of 703 ~ 33.85%
#E4EDEE 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)
E4 | ED | EE | |
---|---|---|---|
RGB | 228 | 237 | 238 |
HSL | 186° | 22.73% | 91.37% |
HSB/HSV | 186° | 4.20% | 93.33% |
CMYK | 4.20% | 0.42% | 0.00% |
6.67% |
HEX | E4 | ED | EE |
Decimal | 228 | 237 | 238 |
Binary | 11100100 | 11101101 | 11101110 |
Octal | 344 | 355 | 356 |
Examples of css and html codes for elements with #E4EDEE color. Also use rgb(228,237,238) instead hex code.
.myTextColor { color: #E4EDEE; }
<p style="color:#E4EDEE">This sample text font color is #E4EDEE.</p>
This text font color is #E4EDEE.
.myBgColor { background-color: #E4EDEE; }
<div style="background-color:#E4EDEE">Inner text</div>
This div background color is #E4EDEE.
.myBorderColor { border: 1px solid #E4EDEE; }
<div style="border:3px solid #E4EDEE">Div</div>
This div border color is #E4EDEE.
.myOpacity80 { color: #E4EDEE; opacity: 0.8; }
<p style="color:#E4EDEE;opacity:0.8;">80%</p>
Text with #E4EDEE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E4EDEE;}
<p style="text-shadow: 3px 3px 1px #E4EDEE">Text here.</p>
This text has shadow with #E4EDEE color.
.textShadow {text-shadow: 3px 3px 1px #E4EDEE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E4EDEE, 5px 5px 20px red">Text here.</p>
This text has shadow with #E4EDEE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E4EDEE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E4EDEE, Direction=45, Strength=4)">Text</p>
This text has shadow with #E4EDEE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E4EDEE; -webkit-box-shadow: 1px 1px 3px 2px #E4EDEE; box-shadow: 1px 1px 3px 2px #E4EDEE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E4EDEE; -webkit-box-shadow: 1px 1px 3px 2px #E4EDEE; box-shadow:1px 1px 3px 2px #E4EDEE;">
Div content here</div>
This text has color #E4EDEE on black background.
This text has color #E4EDEE on white background.
This text has black color on #E4EDEE background.
This text has white color on #E4EDEE background.