HEX: #E4EEFB
RGB: (228,238,251)
#E4EEFB contains red, green and blue colors in about the same proportion. Web safe color of #E4EEFB is #CCFFFF (or #CFF).
#E4EEFB color RGB value is (228,238,251).
RGB: (228,238,251) (89%,93%,98%)
R 228 of 255 = 89%
G 238 of 255 = 93%
B 251 of 255 = 98%
R + G + B ~ 93%. #E4EEFB is light color.
R + G + B =
228 + 238 + 251 = 717 (100%)
R 228 of 717 ~ 31.8%
G 238 of 717 ~ 33.19%
B 251 of 717 ~ 35.01%
#E4EEFB color CMYK value is (9,5,0,2).
CMYK: (9,5,0,2) C9M5Y0K2 (9%,5%,0%,2%) (0.09/0.05/0.00/0.02)
E4 | EE | FB | |
---|---|---|---|
RGB | 228 | 238 | 251 |
HSL | 214° | 74.19% | 93.92% |
HSB/HSV | 214° | 9.16% | 98.43% |
CMYK | 9.16% | 5.18% | 0.00% |
1.57% |
HEX | E4 | EE | FB |
Decimal | 228 | 238 | 251 |
Binary | 11100100 | 11101110 | 11111011 |
Octal | 344 | 356 | 373 |
Examples of css and html codes for elements with #E4EEFB color. Also use rgb(228,238,251) instead hex code.
.myTextColor { color: #E4EEFB; }
<p style="color:#E4EEFB">This sample text font color is #E4EEFB.</p>
This text font color is #E4EEFB.
.myBgColor { background-color: #E4EEFB; }
<div style="background-color:#E4EEFB">Inner text</div>
This div background color is #E4EEFB.
.myBorderColor { border: 1px solid #E4EEFB; }
<div style="border:3px solid #E4EEFB">Div</div>
This div border color is #E4EEFB.
.myOpacity80 { color: #E4EEFB; opacity: 0.8; }
<p style="color:#E4EEFB;opacity:0.8;">80%</p>
Text with #E4EEFB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E4EEFB;}
<p style="text-shadow: 3px 3px 1px #E4EEFB">Text here.</p>
This text has shadow with #E4EEFB color.
.textShadow {text-shadow: 3px 3px 1px #E4EEFB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E4EEFB, 5px 5px 20px red">Text here.</p>
This text has shadow with #E4EEFB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E4EEFB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E4EEFB, Direction=45, Strength=4)">Text</p>
This text has shadow with #E4EEFB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E4EEFB; -webkit-box-shadow: 1px 1px 3px 2px #E4EEFB; box-shadow: 1px 1px 3px 2px #E4EEFB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E4EEFB; -webkit-box-shadow: 1px 1px 3px 2px #E4EEFB; box-shadow:1px 1px 3px 2px #E4EEFB;">
Div content here</div>
This text has color #E4EEFB on black background.
This text has color #E4EEFB on white background.
This text has black color on #E4EEFB background.
This text has white color on #E4EEFB background.