HEX: #E3EAFC
RGB: (227,234,252)
#E3EAFC contains red, green and blue colors in about the same proportion. Web safe color of #E3EAFC is #CCFFFF (or #CFF).
#E3EAFC color RGB value is (227,234,252).
RGB: (227,234,252) (89%,92%,99%)
R 227 of 255 = 89%
G 234 of 255 = 92%
B 252 of 255 = 99%
R + G + B ~ 93%. #E3EAFC is light color.
R + G + B =
227 + 234 + 252 = 713 (100%)
R 227 of 713 ~ 31.84%
G 234 of 713 ~ 32.82%
B 252 of 713 ~ 35.34%
#E3EAFC color CMYK value is (10,7,0,1).
CMYK: (10,7,0,1) C10M7Y0K1 (10%,7%,0%,1%) (0.10/0.07/0.00/0.01)
E3 | EA | FC | |
---|---|---|---|
RGB | 227 | 234 | 252 |
HSL | 223° | 80.65% | 93.92% |
HSB/HSV | 223° | 9.92% | 98.82% |
CMYK | 9.92% | 7.14% | 0.00% |
1.18% |
HEX | E3 | EA | FC |
Decimal | 227 | 234 | 252 |
Binary | 11100011 | 11101010 | 11111100 |
Octal | 343 | 352 | 374 |
Examples of css and html codes for elements with #E3EAFC color. Also use rgb(227,234,252) instead hex code.
.myTextColor { color: #E3EAFC; }
<p style="color:#E3EAFC">This sample text font color is #E3EAFC.</p>
This text font color is #E3EAFC.
.myBgColor { background-color: #E3EAFC; }
<div style="background-color:#E3EAFC">Inner text</div>
This div background color is #E3EAFC.
.myBorderColor { border: 1px solid #E3EAFC; }
<div style="border:3px solid #E3EAFC">Div</div>
This div border color is #E3EAFC.
.myOpacity80 { color: #E3EAFC; opacity: 0.8; }
<p style="color:#E3EAFC;opacity:0.8;">80%</p>
Text with #E3EAFC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E3EAFC;}
<p style="text-shadow: 3px 3px 1px #E3EAFC">Text here.</p>
This text has shadow with #E3EAFC color.
.textShadow {text-shadow: 3px 3px 1px #E3EAFC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E3EAFC, 5px 5px 20px red">Text here.</p>
This text has shadow with #E3EAFC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E3EAFC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E3EAFC, Direction=45, Strength=4)">Text</p>
This text has shadow with #E3EAFC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E3EAFC; -webkit-box-shadow: 1px 1px 3px 2px #E3EAFC; box-shadow: 1px 1px 3px 2px #E3EAFC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E3EAFC; -webkit-box-shadow: 1px 1px 3px 2px #E3EAFC; box-shadow:1px 1px 3px 2px #E3EAFC;">
Div content here</div>
This text has color #E3EAFC on black background.
This text has color #E3EAFC on white background.
This text has black color on #E3EAFC background.
This text has white color on #E3EAFC background.