HEX: #E7ECFD
RGB: (231,236,253)
#E7ECFD contains red, green and blue colors in about the same proportion. Web safe color of #E7ECFD is #FFFFFF (or #FFF).
#E7ECFD color RGB value is (231,236,253).
RGB: (231,236,253) (91%,93%,99%)
R 231 of 255 = 91%
G 236 of 255 = 93%
B 253 of 255 = 99%
R + G + B ~ 94%. #E7ECFD is light color.
R + G + B =
231 + 236 + 253 = 720 (100%)
R 231 of 720 ~ 32.08%
G 236 of 720 ~ 32.78%
B 253 of 720 ~ 35.14%
#E7ECFD color CMYK value is (9,7,0,1).
CMYK: (9,7,0,1) C9M7Y0K1 (9%,7%,0%,1%) (0.09/0.07/0.00/0.01)
E7 | EC | FD | |
---|---|---|---|
RGB | 231 | 236 | 253 |
HSL | 226° | 84.62% | 94.90% |
HSB/HSV | 226° | 8.70% | 99.22% |
CMYK | 8.70% | 6.72% | 0.00% |
0.78% |
HEX | E7 | EC | FD |
Decimal | 231 | 236 | 253 |
Binary | 11100111 | 11101100 | 11111101 |
Octal | 347 | 354 | 375 |
Examples of css and html codes for elements with #E7ECFD color. Also use rgb(231,236,253) instead hex code.
.myTextColor { color: #E7ECFD; }
<p style="color:#E7ECFD">This sample text font color is #E7ECFD.</p>
This text font color is #E7ECFD.
.myBgColor { background-color: #E7ECFD; }
<div style="background-color:#E7ECFD">Inner text</div>
This div background color is #E7ECFD.
.myBorderColor { border: 1px solid #E7ECFD; }
<div style="border:3px solid #E7ECFD">Div</div>
This div border color is #E7ECFD.
.myOpacity80 { color: #E7ECFD; opacity: 0.8; }
<p style="color:#E7ECFD;opacity:0.8;">80%</p>
Text with #E7ECFD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E7ECFD;}
<p style="text-shadow: 3px 3px 1px #E7ECFD">Text here.</p>
This text has shadow with #E7ECFD color.
.textShadow {text-shadow: 3px 3px 1px #E7ECFD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E7ECFD, 5px 5px 20px red">Text here.</p>
This text has shadow with #E7ECFD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E7ECFD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E7ECFD, Direction=45, Strength=4)">Text</p>
This text has shadow with #E7ECFD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E7ECFD; -webkit-box-shadow: 1px 1px 3px 2px #E7ECFD; box-shadow: 1px 1px 3px 2px #E7ECFD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E7ECFD; -webkit-box-shadow: 1px 1px 3px 2px #E7ECFD; box-shadow:1px 1px 3px 2px #E7ECFD;">
Div content here</div>
This text has color #E7ECFD on black background.
This text has color #E7ECFD on white background.
This text has black color on #E7ECFD background.
This text has white color on #E7ECFD background.